aboutsummaryrefslogtreecommitdiff
path: root/libs/libc/inc/print.h
blob: 6d959c3ed2f451aac2808b74eae63404e4bf84af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// MIT License, Copyright (c) 2020 Marvin Borner

#ifndef PRINT_H
#define PRINT_H

#include <arg.h>
#include <def.h>

int printf(const char *format, ...) NONNULL;
int vprintf(const char *format, va_list ap) NONNULL;
int snprintf(char *str, u32 size, const char *format, ...) NONNULL;
int vsnprintf(char *str, u32 size, const char *format, va_list ap) NONNULL;
int print(const char *str) NONNULL;
NORETURN void panic(const char *format, ...) NONNULL;

#ifdef USER
#include <sys.h>
int vfprintf(const char *path, const char *format, va_list ap) NONNULL;
int viprintf(enum io_type io, const char *format, va_list ap) NONNULL;
int fprintf(const char *path, const char *format, ...) NONNULL;
int iprintf(enum io_type io, const char *format, ...) NONNULL;
int log(const char *format, ...) NONNULL;
void err(int code, const char *format, ...) NONNULL;
#else
#include <proc.h>
int print_prefix(void);
void print_trace(u32 count);
#endif

#endif