home *** CD-ROM | disk | FTP | other *** search
/ Mega Top 1 / os2_top1.zip / os2_top1 / APPS / TEKST / CMTEX330 / SOURCE / CHR.C < prev    next >
C/C++ Source or Header  |  1992-02-19  |  449b  |  39 lines

  1.  
  2. /*
  3.  * %Y%:%M%:%I%:%Q%
  4.  *
  5.  * Copyright 1987,1988,1991 Pat J Monardo
  6.  *
  7.  * Redistribution of this file is permitted through
  8.  * the specifications in the file COPYING.
  9.  *
  10.  *
  11.  */
  12.  
  13. #ifndef lint
  14. static char *sccsid = "%A%";
  15. #endif
  16.  
  17. #include "tex.h"
  18.  
  19. byte    xord[256];
  20. byte    xchr[256];
  21.  
  22. void
  23. _chr_init ()
  24. {
  25.     int    i;
  26.  
  27.     for (i = 0; i <= 0377; incr(i)) {
  28.         xchr[i] = i;
  29.     }
  30.     for (i = 0; i <= 0377; incr(i)) {
  31.         xord[xchr[i]] = i;
  32.     }
  33. }
  34.  
  35. void
  36. _chr_init_once ()
  37. {
  38. }
  39.