home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Meeting Pearls 3
/
Meeting_Pearls_III.iso
/
Pearls
/
cdrom
/
Misc
/
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*);