mirror of
https://github.com/diegocr/libnix.git
synced 2025-12-08 14:58:32 +00:00
12 lines
234 B
C
12 lines
234 B
C
#include <string.h>
|
|
#include <proto/utility.h>
|
|
#include "stabs.h"
|
|
|
|
int strnicmp(const char *s1,const char *s2,size_t len)
|
|
{
|
|
return Strnicmp((STRPTR)s1,(STRPTR)s2,(LONG)len);
|
|
}
|
|
|
|
ALIAS(strncasecmp,strnicmp);
|
|
ALIAS(strncmpi,strnicmp);
|