VSF Documented
langinfo.h
Go to the documentation of this file.
1#ifndef __SIMPLE_LIBC_LANGINFO_H__
2#define __SIMPLE_LIBC_LANGINFO_H__
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8typedef enum {
9 CODESET = 0,
10} nl_item;
11
12char * nl_langinfo(nl_item item);
13//char * nl_langinfo_l(nl_item item, locale_t locale);
14
15#ifdef __cplusplus
16}
17#endif
18
19#endif
nl_item
Definition langinfo.h:8
@ CODESET
Definition langinfo.h:9
char * nl_langinfo(nl_item item)
Definition vsf_linux.c:4453