diff options
Diffstat (limited to 'Libraries/LibC/strings.h')
-rw-r--r-- | Libraries/LibC/strings.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Libraries/LibC/strings.h b/Libraries/LibC/strings.h new file mode 100644 index 0000000000..b7f7d1ed5a --- /dev/null +++ b/Libraries/LibC/strings.h @@ -0,0 +1,11 @@ +#pragma once + +#include <sys/cdefs.h> +#include <sys/types.h> + +__BEGIN_DECLS + +int strcasecmp(const char*, const char*); +int strncasecmp(const char*, const char*, size_t); + +__END_DECLS |