1 /* 2 * Copyright 2001-2004 Brandon Long 3 * All Rights Reserved. 4 * 5 * ClearSilver Templating System 6 * 7 * This code is made available under the terms of the ClearSilver License. 8 * http://www.clearsilver.net/license.hdf 9 * 10 */ 11 12 #ifndef __NEO_RAND_H_ 13 #define __NEO_RAND_H_ 1 14 15 __BEGIN_DECLS 16 17 void neo_seed_rand (long int seed); 18 int neo_rand (int max); 19 int neo_rand_string (char *s, int slen); 20 int neo_rand_word (char *s, int slen); 21 22 __END_DECLS 23 24 #endif /* __NEO_RAND_H_ */ 25