diff options
author | Marvin Borner | 2021-02-10 20:28:16 +0100 |
---|---|---|
committer | Marvin Borner | 2021-02-10 20:28:16 +0100 |
commit | e7fb1f97a5f95bcfd1d924b345f98bc0b496f5c0 (patch) | |
tree | 70984e3433c5de919d2be59c0ad633156213e30b /libc/inc/print.h | |
parent | edc570a3552a7fdaaf89962e5374d98c2b3dfaa0 (diff) |
Print to streams instead of serial console
Diffstat (limited to 'libc/inc/print.h')
-rw-r--r-- | libc/inc/print.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libc/inc/print.h b/libc/inc/print.h index 04668b2..575cc5f 100644 --- a/libc/inc/print.h +++ b/libc/inc/print.h @@ -11,4 +11,14 @@ int vprintf(const char *format, va_list ap); int vsprintf(char *str, const char *format, va_list ap); int print(const char *str); +#ifdef userspace +int vfprintf(const char *path, const char *format, va_list ap); +int fprintf(const char *path, const char *format, ...); +int log(const char *format, ...); +int err(int code, const char *format, ...); +#else +#include <proc.h> +int print_app(enum stream_defaults id, const char *proc_name, const char *str); +#endif + #endif |