home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / rxendeco.zip / BASE64.H < prev    next >
C/C++ Source or Header  |  2001-07-13  |  289b  |  15 lines

  1. #ifndef BASE64_DEF
  2. #define BASE64_DEF
  3.  
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7.  
  8. int utBinToBase64 ( unsigned char *target, unsigned char *source, int length );
  9. int utBase64ToBin ( unsigned char *target, unsigned char *source, int length );
  10.  
  11. #ifdef __cplusplus
  12. }
  13. #endif
  14. #endif
  15.