aboutsummaryrefslogtreecommitdiff
path: root/libc/inc/print.h
blob: 04668b23a8a7cf0dfe980a60f2fc73f2d5989ce8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// MIT License, Copyright (c) 2020 Marvin Borner
// I may (re)move this in the future // TODO

#ifndef PRINT_H
#define PRINT_H

#include "arg.h"

int printf(const char *format, ...);
int vprintf(const char *format, va_list ap);
int vsprintf(char *str, const char *format, va_list ap);
int print(const char *str);

#endif