-
- Downloads
add the string library from musl
Import the whole string library, as well as the ctype functions from the musl C library. Must is a BSD licensed library that aims to be API and mostly ABI compatible with glibc, so it's our easiest way to provide the ABI we need without reinventing the wheel. I will import more of the traditional non-syscall C library code from it and expect libc/ to eventually mostly consist of slightly modified musl code.
Showing
- libc/build.mak 108 additions, 3 deletionslibc/build.mak
- libc/ctype.cc 0 additions, 30 deletionslibc/ctype.cc
- libc/ctype/__ctype_b_loc.c 42 additions, 0 deletionslibc/ctype/__ctype_b_loc.c
- libc/ctype/__ctype_get_mb_cur_max.c 6 additions, 0 deletionslibc/ctype/__ctype_get_mb_cur_max.c
- libc/ctype/__ctype_tolower_loc.c 31 additions, 0 deletionslibc/ctype/__ctype_tolower_loc.c
- libc/ctype/__ctype_toupper_loc.c 31 additions, 0 deletionslibc/ctype/__ctype_toupper_loc.c
- libc/ctype/alpha.h 125 additions, 0 deletionslibc/ctype/alpha.h
- libc/ctype/isalnum.c 7 additions, 0 deletionslibc/ctype/isalnum.c
- libc/ctype/isalpha.c 7 additions, 0 deletionslibc/ctype/isalpha.c
- libc/ctype/isascii.c 7 additions, 0 deletionslibc/ctype/isascii.c
- libc/ctype/isblank.c 7 additions, 0 deletionslibc/ctype/isblank.c
- libc/ctype/iscntrl.c 7 additions, 0 deletionslibc/ctype/iscntrl.c
- libc/ctype/isdigit.c 7 additions, 0 deletionslibc/ctype/isdigit.c
- libc/ctype/isgraph.c 4 additions, 0 deletionslibc/ctype/isgraph.c
- libc/ctype/islower.c 7 additions, 0 deletionslibc/ctype/islower.c
- libc/ctype/isprint.c 4 additions, 0 deletionslibc/ctype/isprint.c
- libc/ctype/ispunct.c 7 additions, 0 deletionslibc/ctype/ispunct.c
- libc/ctype/isspace.c 7 additions, 0 deletionslibc/ctype/isspace.c
- libc/ctype/isupper.c 7 additions, 0 deletionslibc/ctype/isupper.c
- libc/ctype/iswalnum.c 8 additions, 0 deletionslibc/ctype/iswalnum.c
Loading
Please register or sign in to comment