mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-10 01:34:12 +00:00
4e5a949382
Signed-off-by: Sven Peter <sven@svenpeter.dev>
12 lines
179 B
C
12 lines
179 B
C
/* SPDX-License-Identifier: MIT */
|
|
|
|
#ifndef SEP_H
|
|
#define SEP_H
|
|
|
|
#include "asc.h"
|
|
#include "types.h"
|
|
|
|
int sep_init(void);
|
|
size_t sep_get_random(void *buffer, size_t len);
|
|
|
|
#endif
|