File: chset.h

package info (click to toggle)
nn 6.7.3-8
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 2,508 kB
  • ctags: 3,199
  • sloc: ansic: 32,035; sh: 1,491; awk: 138; makefile: 98
file content (18 lines) | stat: -rw-r--r-- 327 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 *	(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;

struct chset   *getchset(char *);
#endif				/* _NN_CHSET_H */