home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / CMDS / mtools_3.6.src.lzh / MTOOLS_3.6 / codepage.h < prev    next >
Text File  |  1997-11-12  |  469b  |  25 lines

  1. typedef struct Codepage_l {
  2.     int nr;   
  3.     unsigned char tounix[128];
  4. } Codepage_t;
  5.  
  6.  
  7. typedef struct country_l {
  8.     int country;
  9.     int codepage;
  10.     int default_codepage;
  11.     int to_upper;
  12. } country_t;
  13.  
  14.  
  15. void init_codepage(void);
  16. unsigned char to_dos(unsigned char c);
  17. void to_unix(char *a, int n);
  18.  
  19. extern Codepage_t *Codepage;
  20. extern char *mstoupper;
  21. extern country_t countries[];
  22. extern unsigned char toucase[][128];
  23. extern Codepage_t codepages[];
  24. extern char *country_string;
  25.