1
0
mirror of https://github.com/cahirwpz/libnix.git synced 2025-11-21 09:07:02 +00:00
Files
amiga-libnix2/sources/nix20/extra/strnicmp.c
Krystian Bacławski b1c9ff1a73 Devise a counterpart for libnix13.
From now on nix13 or nix20 will have to be provided explicitely to linker,
depending on which Kickstart your application should run on.
2016-10-08 22:42:48 +02:00

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);