mirror of
https://github.com/espressif/esp-idf
synced 2025-03-21 15:09:07 -04:00
16 lines
151 B
C
16 lines
151 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
uint32_t esp_random(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|