Added missing strcasecmp function prototype in the include file

This commit is contained in:
Th3maz1ng 2023-05-14 22:17:48 +02:00
parent fa574d0baa
commit c9f84fd5c1

View File

@ -33,6 +33,7 @@ int string_to_uint(char *buf, u32 *d);
int string_to_ipaddr(const char *buf, u8 *addr);
char * strdup(const char *s);
char * strndup(const char *s, size_t len);
int strcasecmp(const char *s1, const char *s2);
int sendchar(int ch);
void dumpBuffer(char *name, char* buffer, int len);