From fc00c656c96528112d05cf0edf8631bd5eaea446 Mon Sep 17 00:00:00 2001 From: Kacper Date: Sun, 7 Dec 2025 20:10:31 +0100 Subject: Add build system scaffolding and libc headers --- include/strings.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 include/strings.h (limited to 'include/strings.h') 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 -- cgit v1.2.3