Files
scoutfs/utils/src/rand.h
Zach Brown 2c2f090168 Initial commit
This initial commit has enough to make a new file system and print out
it's structures.

Signed-off-by: Zach Brown <zab@versity.com>
2016-02-12 15:58:41 -08:00

11 lines
230 B
C

#ifndef _RAND_H_
#define _RAND_H_
/*
* We could play around a bit with some macros to get aligned constant
* word sized buffers filled by single instructions.
*/
void pseudo_random_bytes(void *data, unsigned int len);
#endif