oot/include/libc64/sprintf.h

10 lines
182 B
C

#ifndef LIBC64_SPRINTF_H
#define LIBC64_SPRINTF_H
#include "stdarg.h"
int vsprintf(char* dst, const char* fmt, va_list args);
int sprintf(char* dst, const char* fmt, ...);
#endif