-
-
Notifications
You must be signed in to change notification settings - Fork 9
sys cstring
IsaacShelton edited this page Nov 13, 2022
·
5 revisions
sys/cstring.adept contains symbols from <string.h>.
foreign memcpy(out ptr, ptr, usize) ptrforeign memmove(out ptr, ptr, usize) ptrforeign strcpy(out *ubyte, *ubyte) *ubyteforeign strncpy(out *ubyte, *ubyte, usize) *ubyteforeign strcat(out *ubyte, *ubyte) *ubyteforeign strncat(out *ubyte, *ubyte, usize) *ubyteforeign memcmp(ptr, ptr, usize) intforeign strcmp(*ubyte, *ubyte) intforeign strcoll(*ubyte, *ubyte) intforeign strncmp(*ubyte, *ubyte, usize) intforeign memchr(ptr, int, usize) ptrforeign strchr(*ubyte, int) *ubyteforeign strcspn(*ubyte, *ubyte) usizeforeign strpbrk(*ubyte, *ubyte) *ubyteforeign strrchr(*ubyte, ubyte) *ubyteforeign strspn(*ubyte, *ubyte) usizeforeign strstr(*ubyte, *ubyte) *ubyteforeign strtok(inout *ubyte, *ubyte) *ubyteforeign memset(out ptr, ubyte, usize) ptrforeign strlen(*ubyte) usizeforeign strerror(int) *ubyteforeign strdup(*ubyte) *ubyte