nl_langinfo - get locale information
Standard C Library (libc, -lc)
#include <langinfo.h>
char *
nl_langinfo(nl_item item);
The nl_langinfo() function returns a pointer to a string containing
information set by the program's locale.
The names and values of item are defined in <langinfo.h>.
nl_langinfo() returns a pointer to an empty string if item is invalid.
setlocale(3)
The nl_langinfo() function appeared in NetBSD 1.0.
BSD July 14, 1994 BSD
[ Back ] |