9 lines
125 B
C
9 lines
125 B
C
#ifndef KSTREAM_H
|
|
#define KSTREAM_H
|
|
|
|
typedef struct {
|
|
void (*putchar)(char c);
|
|
void (*trunc)();
|
|
} print_stream_t;
|
|
|
|
#endif |