mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 20:24:57 +00:00
11 lines
182 B
C
11 lines
182 B
C
#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
|