AC-Tube
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
actube/src/cw/rand.h

10 lines
144 B

#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