home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / useful / disk / cdrom / mkisofs / trans.h < prev    next >
C/C++ Source or Header  |  1994-11-21  |  328b  |  17 lines

  1. /* trans.h: */
  2.  
  3. struct translation {
  4.   char from[33];
  5.   char to[13];
  6.   struct translation *next;
  7. };
  8.  
  9. struct transtbl {
  10.   struct translation *entries;
  11.   int number_of_entries;
  12. };
  13.  
  14. void scan_trans_tbl (struct transtbl*, const char *);
  15. void free_trans_tbl (struct transtbl*);
  16. const char* translate (struct transtbl*, const char*);
  17.