Files
simplexmq/cbits/sxcrandom.h
T
IC Rainbow 6bbbf0ac4b Wrap bindings in non-FFI types
Test passes with a dummy RNG.
2023-10-28 19:25:44 +03:00

11 lines
201 B
C

#ifndef SXCRANDOM_H
#define SXCRANDOM_H
#include <stdint.h>
typedef void random_func (void *ctx, size_t length, uint8_t *dst);
void sxcrandom_dummy (void *ctx, size_t length, uint8_t *dst);
#endif