bbc64dd0a7
FossilOrigin-Name: 115fa489fbb4aa197e8390d40abcea80a8d4f954fecab348ce2862d2a20523c2
11 lines
144 B
C
11 lines
144 B
C
#ifndef __CW_RAND_H
|
|
#define __CW_RAND_H
|
|
|
|
#include <stdint.h>
|
|
|
|
int cw_rand(uint8_t*dst, int len);
|
|
uint16_t cw_randint(int min,int max);
|
|
|
|
#endif
|
|
|