|
NAMEuselocale —
Sets a thread-local locale
LIBRARYStandard C Library (libc, -lc)SYNOPSIS#include <locale.h>
locale_t
DESCRIPTIONSpecifies the locale for this thread to use. Specifying LC_GLOBAL_LOCALE disables the per-thread locale, while NULL returns the current locale without setting a new one.RETURN VALUESReturns the previous locale, or LC_GLOBAL_LOCALE if this thread has no locale associated with it.SEE ALSOduplocale(3), freelocale(3), localeconv(3), newlocale(3), querylocale(3), xlocale(3)STANDARDSThis function conforms to IEEE Std 1003.1-2008 (“POSIX.1”).
Visit the GSP FreeBSD Man Page Interface. |