source: trunk/minix/drivers/random/random.h@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 371 bytes
Line 
1/*
2random.h
3
4Public interface to the random number generator
5*/
6
7_PROTOTYPE( void random_init, (void) );
8_PROTOTYPE( int random_isseeded, (void) );
9_PROTOTYPE( void random_update, (int source, unsigned short *buf,
10 int count) );
11_PROTOTYPE( void random_getbytes, (void *buf, size_t size) );
12_PROTOTYPE( void random_putbytes, (void *buf, size_t size) );
Note: See TracBrowser for help on using the repository browser.