13 lines
193 B
C
13 lines
193 B
C
#ifndef STREAM_H
|
|
#define STREAM_H
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
typedef struct {
|
|
void (*write)(const char * src, size_t length);
|
|
void (*write1)(char c);
|
|
} stream_t;
|
|
|
|
#endif
|