stream: use char instead of uint8_t

This commit is contained in:
Josh Holtrop 2020-10-20 19:47:15 -04:00
parent 313b86fdc7
commit 9bddf11ee4

View File

@ -5,8 +5,8 @@
#include <stdint.h> #include <stdint.h>
typedef struct { typedef struct {
void (*write)(const uint8_t * src, size_t length); void (*write)(const char * src, size_t length);
void (*write1)(uint8_t c); void (*write1)(char c);
} stream_t; } stream_t;
#endif #endif