nl_types.h 316 B

12345678910111213141516171819202122
  1. #ifndef _NL_TYPES_H
  2. #define _NL_TYPES_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #define NL_SETD 1
  7. #define NL_CAT_LOCALE 1
  8. typedef int nl_item;
  9. typedef void *nl_catd;
  10. nl_catd catopen (const char *, int);
  11. char *catgets (nl_catd, int, int, const char *);
  12. int catclose (nl_catd);
  13. #ifdef __cplusplus
  14. }
  15. #endif
  16. #endif