musl/src/locale/newlocale.c

15 lines
315 B
C
Raw Normal View History

2011-02-12 05:22:29 +00:00
#include <stdlib.h>
#include <string.h>
#include "locale_impl.h"
#include "libc.h"
2011-02-12 05:22:29 +00:00
locale_t newlocale(int mask, const char *name, locale_t base)
{
if (*name && strcmp(name, "C") && strcmp(name, "POSIX"))
return 0;
if (!base) base = calloc(1, sizeof *base);
return base;
}
weak_alias(newlocale, __newlocale);