NetDisk/strcasecmp.h

10 lines
179 B
C
Raw Permalink Normal View History

#ifndef STRCASECMP_H
#define STRCASECMP_H
#include <stddef.h>
int strcasecmp(const char *s1, const char *s2);
int strncasecmp(const char *s1, const char *s2, size_t n);
#endif