1
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
43
44
45
46
47
48
49
/* ... */
#ifndef __ESP_RANDOM_H__
#define __ESP_RANDOM_H__
#include <stddef.h>
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
/* ... */
uint32_t esp_random(void);
/* ... */
void esp_fill_random(void *buf, size_t len);
#ifdef __cplusplus
}{...}
#endif
/* ... */
#endif