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

11 lines
148 B
C

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