12 lines
187 B
C
12 lines
187 B
C
#ifndef NUMGEN_H
|
|
#define NUMGEN_H
|
|
|
|
#include <stdlib.h>
|
|
#include <time.h>
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
|
|
unsigned char random_byte(void);
|
|
uint32_t random_four_byte(void);
|
|
|
|
#endif |