Updated project to use eclipse build tools and make system.
[C-Data-Structures.git] / lib_random.h
blob0dba7b99470324577790e02c2bdc148c8ae9ecc8
1 #ifndef LIB_RANDOM_H_
2 #define LIB_RANDOM_H_
4 /* generate random number from min to max */
5 int random_int(int min, int max);
7 /* use clock in system to create random seed for number generator */
8 void random_seed();
10 #endif /* LIB_RANDOM_H_ */