Files

9 lines
125 B
C
Raw Permalink Normal View History

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