diff options
| author | Kacper <kacper@mail.openlinux.dev> | 2025-12-07 20:10:31 +0100 |
|---|---|---|
| committer | Kacper <kacper@mail.openlinux.dev> | 2025-12-07 20:10:31 +0100 |
| commit | fc00c656c96528112d05cf0edf8631bd5eaea446 (patch) | |
| tree | a6e0e6c588191a8bd1c64afc3b7a258e3e66c236 /include/strings.h | |
Add build system scaffolding and libc headers
Diffstat (limited to 'include/strings.h')
| -rw-r--r-- | include/strings.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/strings.h b/include/strings.h new file mode 100644 index 00000000..cd8743c4 --- /dev/null +++ b/include/strings.h @@ -0,0 +1,15 @@ +#ifndef __STRINGS_H +#define __STRINGS_H + +typedef __SIZE_TYPE__ size_t; + +int ffs(int); +int ffsl(long); +int ffsll(long long); + +int strcasecmp(const char *, const char *); +// int strcasecmp_l(const char *, const char *, locale_t); +int strncasecmp(const char *, const char *, size_t); +// int strncasecmp_l(const char *, const char *, size_t, locale_t); + +#endif |
