diff options
author | Marvin Borner | 2021-03-26 21:55:50 +0100 |
---|---|---|
committer | Marvin Borner | 2021-03-26 22:02:20 +0100 |
commit | 05498860e8f7b1e8bb27880bc7526de026694804 (patch) | |
tree | 3bddf16e9439a950a3810d45e42a5cefdbcb7663 /libs/libc/inc/print.h | |
parent | a96e9c4c858d47f61b89d879aa0ce6a02bdacb38 (diff) |
Renamed libs
Cleaner and more flexible.
Diffstat (limited to 'libs/libc/inc/print.h')
-rw-r--r-- | libs/libc/inc/print.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/libs/libc/inc/print.h b/libs/libc/inc/print.h new file mode 100644 index 0000000..58b5dc6 --- /dev/null +++ b/libs/libc/inc/print.h @@ -0,0 +1,27 @@ +// MIT License, Copyright (c) 2020 Marvin Borner + +#ifndef PRINT_H +#define PRINT_H + +#include "arg.h" +#include <def.h> + +int printf(const char *format, ...); +int vprintf(const char *format, va_list ap); +int sprintf(char *str, const char *format, ...); +int vsprintf(char *str, const char *format, va_list ap); +int print(const char *str); +NORETURN void panic(const char *format, ...); + +#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); +void print_trace(u32 count); +#endif + +#endif |