1 /*
2  *	(c) Copyright 1992, Luc Rooijakkers.  All rights reserved.
3  *
4  *	Character set support (rudimentary)
5  */
6 
7 #ifndef _NN_CHSET_H
8 #define _NN_CHSET_H 1
9 
10 struct chset {
11     char           *cs_name;
12     int             cs_width;
13 };
14 
15 extern struct chset *curchset;
16 
17 struct chset   *getchset(char *);
18 #endif				/* _NN_CHSET_H */
19