rulimine/common/lib/rand.h

12 lines
149 B
C
Raw Normal View History

2020-06-01 11:20:34 +03:00
#ifndef __LIB__RAND_H__
#define __LIB__RAND_H__
#include <stdint.h>
void srand(uint32_t s);
uint32_t rand32(void);
uint64_t rand64(void);
#endif