]> icculus.org git repositories - taylor/freespace2.git/blob - include/crypt.h
rendering functions mostly done; more complete shader setup
[taylor/freespace2.git] / include / crypt.h
1 /*
2  * Copyright (C) Volition, Inc. 1999.  All rights reserved.
3  *
4  * All source code herein is the property of Volition, Inc. You may not sell 
5  * or otherwise commercially exploit the source or things you created based on
6  * the source.
7  */
8
9 /*
10  * $Logfile: /Freespace2/code/GlobalIncs/crypt.h $
11  * $Revision$
12  * $Date$
13  * $Author$
14  *
15  * Header for crypt stuff
16  *
17  * $Log$
18  * Revision 1.2  2002/06/09 04:41:12  relnev
19  * added copyright header
20  *
21  * Revision 1.1.1.1  2002/05/03 03:28:12  root
22  * Initial import.
23  *
24  * 
25  * 3     8/05/99 2:05a Dave
26  * Fixes. Optimized detail level stuff.
27  * 
28  * 2     10/07/98 10:52a Dave
29  * Initial checkin.
30  * 
31  * 1     10/07/98 10:48a Dave
32  * 
33  * 3     5/19/98 12:19p Mike
34  * Cheat codes!
35  * 
36  * 2     3/30/98 9:33p Allender
37  * string encryption stuff for cheat codes
38  * 
39  * 1     3/30/98 3:20p Allender
40  *
41  * $NoKeywords: $
42  */
43
44 #ifndef _CRYPT_H
45 #define _CRYPT_H
46
47 // define for the length of a crypted string
48 #define CRYPT_STRING_LENGTH             17
49
50 char *jcrypt (char *plainstring);
51
52 #endif
53