home *** CD-ROM | disk | FTP | other *** search
- /* trans.h: */
-
- struct translation {
- char from[33];
- char to[13];
- struct translation *next;
- };
-
- struct transtbl {
- struct translation *entries;
- int number_of_entries;
- };
-
- void scan_trans_tbl (struct transtbl*, const char *);
- void free_trans_tbl (struct transtbl*);
- const char* translate (struct transtbl*, const char*);
-