view src/lib/randgen.h @ 903:fd8888f6f037 HEAD

Naming style changes, finally got tired of most of the typedefs. Also the previous enum -> macro change reverted so that we don't use the highest bit anymore, that's incompatible with old indexes so they will be rebuilt.
author Timo Sirainen <tss@iki.fi>
date Sun, 05 Jan 2003 15:09:51 +0200
parents 4a7ab9e94f25
children 50acbcc7e4d8
line wrap: on
line source

#ifndef __RANDGEN_H
#define __RANDGEN_H

void random_fill(void *buf, size_t size);

/* may be called multiple times */
void random_init(void);
void random_deinit(void);

#endif