/* $NetBSD: setlocale.c,v 1.4 2003/07/26 17:07:36 salo Exp $ */ /* * Written by Gordon W. Ross * Public domain. */ #include #include #define __SETLOCALE_SOURCE__ #include /* * Cheap and dirty setlocale() that is just good enough to * satisfy references in programs like cat that do: * setlocale(LC_ALL, ""); * Offered with apologies to all non-english speakers... */ static char current_locale[32] = { "C" }; size_t __mb_cur_max = 1; char * __setlocale_mb_len_max_32(category, locale) int category; const char *locale; { if (category < 0 || category >= _LC_LAST) return (NULL); /* No change of locale is allowed. */ if (locale && locale[0]) return(NULL); return (current_locale); }