This repository has been archived on 2022-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
Luma3DS-3GX/source/fmt.h
Aurora Wright c746326eb3 Cleanup
2017-05-07 23:18:26 +02:00

7 lines
156 B
C

#pragma once
#include "memory.h"
#include <stdarg.h>
u32 vsprintf(char *buf, const char *fmt, va_list args);
u32 sprintf(char *buf, const char *fmt, ...);