PatchworkOS
Loading...
Searching...
No Matches
strings.h
Go to the documentation of this file.
1#ifndef _STRINGS_H
2#define _STRINGS_H 1
3
4#if defined(__cplusplus)
5extern "C"
6{
7#endif
8
9#include "_internal/NULL.h"
10#include "_internal/config.h"
11#include "_internal/size_t.h"
12
13int strcasecmp(const char* s1, const char* s2);
14int strncasecmp(const char* s1, const char* s2, size_t n);
15
16#if defined(__cplusplus)
17}
18#endif
19
20#endif
int strncasecmp(const char *s1, const char *s2, size_t n)
Definition strncasecmp.c:4
int strcasecmp(const char *s1, const char *s2)
Definition strcasecmp.c:4