lambda-calc-1/ostream/file/write.h
2025-01-13 20:36:07 -06:00

12 lines
155 B
C

#include <stddef.h>
#include <stdint.h>
struct ostream;
void file_ostream_write(
struct ostream* super,
const uint8_t* data,
size_t len);