gingrspacecadet 638059f6f3 argc and argv
2025-10-18 12:02:13 +01:00
2025-09-11 01:14:37 +01:00
2025-09-11 01:14:37 +01:00
2025-10-18 12:02:13 +01:00
2025-10-18 12:02:13 +01:00
2025-08-27 13:07:26 +01:00
2025-08-26 23:11:16 +01:00
2025-09-11 01:14:37 +01:00
2025-08-27 20:17:46 +01:00

atlibc

atlibc is a from-scratch C library for Linux x86_64, with no external dependencies. It is not POSIX- or ISO-C-compliant — function names, semantics, and API design are intentionally custom.

Building

make

Usage

#include <io.h>
#include <string.h>
#include <int.h>

int main(void) {
    String msg = string_from("Hello, world!\n");
    io_puts(msg, STDOUT);
    return 0;
}

See docs/ for API documentation.

Description
No description provided
Readme MIT 44 KiB
Languages
C 55.3%
Makefile 41.5%
Assembly 3.2%