Files
RockOS/kernel/lib/stream.h

9 lines
125 B
C
Raw Normal View History

#ifndef KSTREAM_H
#define KSTREAM_H
typedef struct {
void (*putchar)(char c);
void (*trunc)();
} print_stream_t;
#endif