mirror of
https://github.com/sheumann/DiskBrowser.git
synced 2024-10-31 09:15:14 +00:00
c237bd661f
This is adapted from NetDisk with minor changes.
10 lines
179 B
C
10 lines
179 B
C
#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
|