home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / x / volume3 / xprompt / part01 / trexp.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-03-10  |  182 b   |  14 lines

  1.  
  2. /* trexp.h */
  3.  
  4. #define trexec(t, ch)        (t->exp[ch & 0377])
  5. #define trnset(t)            (t->nset)
  6.  
  7. typedef struct trexp {
  8.     char exp[256];
  9.     int nset;
  10. } trexp;
  11.  
  12. trexp *trcomp();
  13. void trshow();
  14.