aboutsummaryrefslogtreecommitdiff
path: root/lib/inc/print.h
blob: 925a5bd4e13fcf9041386bb7870af50775c6a17c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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);

#endif