home *** CD-ROM | disk | FTP | other *** search
/ Unix System Administration Handbook 1997 October / usah_oct97.iso / news / nn.tar / nn-6.5.1 / chset.h < prev    next >
C/C++ Source or Header  |  1995-04-29  |  303b  |  21 lines

  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. extern struct chset *getchset();
  18.  
  19.  
  20. #endif /* _NN_CHSET_H */
  21.