2 Copyright © 2003-2013, The AROS Development Team. All rights reserved.
5 C99 function localeconv().
11 /*****************************************************************************
25 category - category as defined in locale.h
26 locale - string representing "C"
32 stdc.library only support "C" locale. So only NULL or
33 "C" are accepted for locale and this function does not
45 ******************************************************************************/
47 if (category
< LC_ALL
|| category
> LC_TIME
)
50 if (locale
== NULL
|| strcmp(locale
, "C") == 0)