home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 9
/
FreshFishVol9-CD2.bin
/
bbs
/
disk
/
mkisofs-1.00.7.lha
/
mkisofs
/
trans.h
< prev
next >
Wrap
C/C++ Source or Header
|
1994-11-21
|
328b
|
17 lines
/* 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*);