mirror of
https://github.com/AtlasLinux/atlibc.git
synced 2026-02-02 15:23:48 -08:00
main
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.
Languages
C
55.3%
Makefile
41.5%
Assembly
3.2%