aboutsummaryrefslogtreecommitdiff
path: root/src/lib/inc/print.h
blob: 1a2419b2678e41306914c1496b836d8b679f773d (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