File: chset.h

package info (click to toggle)
nn 6.5.1-4
  • links: PTS
  • area: main
  • in suites: slink
  • size: 2,472 kB
  • ctags: 4,518
  • sloc: ansic: 35,126; sh: 1,489; makefile: 214; awk: 138
file content (20 lines) | stat: -rw-r--r-- 303 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 *	(c) Copyright 1992, Luc Rooijakkers.  All rights reserved.
 *
 *	Character set support (rudimentary)
 */

#ifndef _NN_CHSET_H
#define _NN_CHSET_H 1

struct chset {
    char *cs_name;
    int cs_width;
};

extern struct chset *curchset;

extern struct chset *getchset();


#endif /* _NN_CHSET_H */