1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-09-20 05:53:24 +01:00
Atmosphere/exosphere/randomcache.h

13 lines
258 B
C
Raw Normal View History

#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