blob: b7f7d1ed5a58afd45e6726e513b43f2ff6fb83a6 (
plain)
1
2
3
4
5
6
7
8
9
10
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
|