nl_types.h 345 B

123456789101112131415161718192021222324
  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. #define __NEED_nl_item
  9. #include <bits/alltypes.h>
  10. typedef long nl_catd;
  11. nl_catd catopen (const char *, int);
  12. char *catgets (nl_catd, int, int, const char *);
  13. int catclose (nl_catd);
  14. #ifdef __cplusplus
  15. }
  16. #endif
  17. #endif