repo.or.cz
/
C-Data-Structures.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Updated project to use eclipse build tools and make system.
[C-Data-Structures.git]
/
lib_random.h
blob
0dba7b99470324577790e02c2bdc148c8ae9ecc8
1
#ifndef LIB_RANDOM_H_
2
#define LIB_RANDOM_H_
3
4
/* generate random number from min to max */
5
int
random_int
(
int
min
,
int
max
);
6
7
/* use clock in system to create random seed for number generator */
8
void
random_seed
();
9
10
#endif
/* LIB_RANDOM_H_ */