summaryrefslogtreecommitdiff
path: root/include/libc/stdio.h
blob: ce918161451ea3776d70c8c39a9ac759e313d988 (plain)
1
2
3
4
5
6
7
8
9
#ifndef STDIO_H
#define STDIO_H

#include "stdarg.h"

int sprintf(char* dst, const char* fmt, ...);
int vsprintf(char* dst, const char* fmt, va_list args);

#endif