mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-05 19:51:45 +00:00
13 lines
No EOL
258 B
C
13 lines
No EOL
258 B
C
#ifndef EXOSPHERE_RANDOM_CACHE_H
|
|
#define EXOSPHERE_RANDOM_CACHE_H
|
|
|
|
#include <stdint.h>
|
|
|
|
/* This method must be called on startup. */
|
|
void randomcache_init(void);
|
|
void randomcache_refill(void);
|
|
|
|
void randomcache_getbytes(void *dst, size_t num_bytes);
|
|
|
|
|
|
#endif |