codecrypt/lib/prng.h

12 lines
153 B
C

#ifndef _CCR_PRNG_H_
#define _CCR_PRNG_H_
#include "codecrypt.h"
int ccr_prng_seed (const char*);
int ccr_prng_bit();
int ccr_prng_int (int);
#endif