home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume23 / crack / part01 / Sources / crack.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-09-22  |  810 b   |  33 lines

  1. /*
  2.  * This program is copyright (c) Alec Muffett 1991 except for certain
  3.  * portions of code ("fdes-crypt.c") copyright (c) Robert Baldwin, Icarus
  4.  * Sparry and Alec Muffett.  The author(s) disclaims all responsibility or
  5.  * liability with respect to it's usage or its effect upon hardware or
  6.  * computer systems.  This software is in freely redistributable PROVIDED
  7.  * that this notice remains intact.
  8.  */
  9.  
  10. #include "conf.h"
  11.  
  12. #define STRINGSIZE    255
  13.  
  14. extern void Trim ();
  15. extern char *Reverse ();
  16. extern char *Uppercase ();
  17. extern char *Lowercase ();
  18. extern char *Clone ();
  19. extern char *gethostname ();
  20.  
  21. #ifdef FAST_TOCASE
  22. #define toupper(x)     _toupper(x)
  23. #define tolower(x)    _tolower(x)
  24. #endif
  25.  
  26. #ifdef FCRYPT
  27. #define crypt(a,b)    fcrypt(a,b)
  28. #endif
  29.  
  30. #ifdef INDEX_NOT_STRCHR
  31. #define strchr(a,b)     index(a,b)
  32. #endif
  33.