12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #ifndef _NL_TYPES_H
- #define _NL_TYPES_H 1
- #include <features.h>
- #define NL_SETD 1
- #define NL_CAT_LOCALE 1
- __BEGIN_DECLS
- typedef void *nl_catd;
- typedef int nl_item;
- extern nl_catd catopen (__const char *__cat_name, int __flag) __THROW;
- extern char *catgets (nl_catd __catalog, int __set, int __number,
- __const char *__string) __THROW;
- extern int catclose (nl_catd __catalog) __THROW;
- __END_DECLS
- #endif
|