import cbaos v0.1
[cbaos.git] / include / string_extra.h
blobd5b61cab504828b6d65625b1e1f8298713e16b9d
1 #ifndef _STRING_EXTRA_H_
2 #define _STRING_EXTRA_H_
4 #include <stddef.h>
6 int strcasecmp(const char *s1, const char *s2);
7 int strncasecmp(const char *s1, const char *s2, size_t n);
9 #endif