home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / snip9707.zip / A2E.H < prev    next >
C/C++ Source or Header  |  1997-07-05  |  460b  |  17 lines

  1. /* +++Date last modified: 05-Jul-1997 */
  2.  
  3. /*
  4. **  ASCII <=> EBCDIC conversion functions
  5. */
  6.  
  7. #ifndef A2E__H
  8. #define A2E__H
  9.  
  10. unsigned char ASCIItoEBCDIC(const unsigned char c);   /* A2E.C          */
  11. unsigned char EBCDICtoASCII(const unsigned char c);   /* A2E.C          */
  12.  
  13. extern int ascii2ebcdic[256];                         /* Toascii.C      */
  14. extern int ebcdic2ascii[256];                         /* Toascii.C      */
  15.  
  16. #endif /* A2E__H */
  17.