]> icculus.org git repositories - taylor/freespace2.git/blob - include/crypt.h
Initial revision
[taylor/freespace2.git] / include / crypt.h
1 /*
2  * $Logfile: /Freespace2/code/GlobalIncs/crypt.h $
3  * $Revision$
4  * $Date$
5  * $Author$
6  *
7  * Header for crypt stuff
8  *
9  * $Log$
10  * Revision 1.1  2002/05/03 03:28:12  root
11  * Initial revision
12  *
13  * 
14  * 3     8/05/99 2:05a Dave
15  * Fixes. Optimized detail level stuff.
16  * 
17  * 2     10/07/98 10:52a Dave
18  * Initial checkin.
19  * 
20  * 1     10/07/98 10:48a Dave
21  * 
22  * 3     5/19/98 12:19p Mike
23  * Cheat codes!
24  * 
25  * 2     3/30/98 9:33p Allender
26  * string encryption stuff for cheat codes
27  * 
28  * 1     3/30/98 3:20p Allender
29  *
30  * $NoKeywords: $
31  */
32
33 #ifndef _CRYPT_H
34 #define _CRYPT_H
35
36 // define for the length of a crypted string
37 #define CRYPT_STRING_LENGTH             17
38
39 char *jcrypt (char *plainstring);
40
41 #endif
42