mirror of
https://github.com/diegocr/libnix.git
synced 2025-12-08 14:58:32 +00:00
12 lines
207 B
C
12 lines
207 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);
|
|
ALIAS(strcmpi,stricmp);
|