mirror of
https://github.com/cahirwpz/libnix.git
synced 2025-11-21 09:07:02 +00:00
From now on nix13 or nix20 will have to be provided explicitely to linker, depending on which Kickstart your application should run on.
11 lines
208 B
C
11 lines
208 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);
|