Blame src/api/strings.c

nsz f81126
#include <strings.h>
nsz f81126
#define T(t) (t*)0;
nsz f81126
static void f()
nsz f81126
{
nsz f81126
T(size_t)
nsz f81126
T(locale_t)
nsz f81126
#ifdef _XOPEN_SOURCE
nsz 0ef264
{int(*p)(int) = ffs;}
nsz f81126
#endif
nsz 0ef264
{int(*p)(const char*,const char*) = strcasecmp;}
nsz 0ef264
{int(*p)(const char*,const char*,locale_t) = strcasecmp_l;}
nsz 0ef264
{int(*p)(const char*,const char*,size_t) = strncasecmp;}
nsz 0ef264
{int(*p)(const char*,const char*,size_t,locale_t) = strncasecmp_l;}
nsz f81126
}