mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00:00
doc: random number generation
Add random number generation APIs to the HTML documentation. Fix style issues. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
parent
9d886fd6a0
commit
c7ff87e0ae
5 changed files with 40 additions and 11 deletions
|
@ -22,7 +22,7 @@ void srand(unsigned int seed);
|
|||
/**
|
||||
* rand() - Get a 32-bit pseudo-random number
|
||||
*
|
||||
* @returns next random number in the sequence
|
||||
* Return: next random number in the sequence
|
||||
*/
|
||||
unsigned int rand(void);
|
||||
|
||||
|
@ -32,8 +32,8 @@ unsigned int rand(void);
|
|||
* This version of the function allows multiple sequences to be used at the
|
||||
* same time, since it requires the caller to store the seed value.
|
||||
*
|
||||
* @seed value to use, updated on exit
|
||||
* @returns next random number in the sequence
|
||||
* @seedp: seed value to use, updated on exit
|
||||
* Return: next random number in the sequence
|
||||
*/
|
||||
unsigned int rand_r(unsigned int *seedp);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue