summaryrefslogtreecommitdiff
path: root/include/nl_types.h
blob: 9343f8e232f2228fd6566ca23bff9e3872cc51b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef __NL_TYPES_H
#define __NL_TYPES_H

#define NL_SETD	      1
#define NL_CAT_LOCALE 1

typedef int nl_item;
typedef void *nl_catd;

int catclose(nl_catd);
char *catgets(nl_catd, int, int, const char *);
nl_catd catopen(const char *, int);

#endif