aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/random.h
blob: 0950ae2e0e76f54f6f018c457d14d6a3e2daf5e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#ifndef __LIB_RANDOM_H
#define __LIB_RANDOM_H

#include <stddef.h>

void random_init (unsigned seed);
void random_bytes (void *, size_t);
unsigned long random_ulong (void);

#endif /* lib/random.h */