1
0
mirror of https://github.com/cahirwpz/libnix.git synced 2025-12-08 14:58:56 +00:00
Files
amiga-libnix2/sources/nix20/extra/stricmp.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
183 B
C

#include <string.h>
#include <proto/utility.h>
#include "stabs.h"
int stricmp(const char *s1,const char *s2)
{
return Stricmp((STRPTR)s1,(STRPTR)s2);
}
ALIAS(strcasecmp,stricmp);