mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-08 13:11:49 +00:00
29 lines
815 B
C
29 lines
815 B
C
|
/*
|
||
|
* Copyright (C) 2011 Andrei Warkentin <andrey.warkentin@gmail.com>
|
||
|
*
|
||
|
* This program is free software ; you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License version 2 as
|
||
|
* published by the Free Software Foundation.
|
||
|
*/
|
||
|
|
||
|
#include <stdarg.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
#ifndef VSPRINTF_H
|
||
|
#define VSPRINTF_H
|
||
|
|
||
|
struct va_format {
|
||
|
const char *fmt;
|
||
|
va_list *va;
|
||
|
};
|
||
|
|
||
|
unsigned long long simple_strtoull(const char *cp, char **endp, unsigned int base);
|
||
|
|
||
|
int sprintf(char *buf, const char *fmt, ...);
|
||
|
int scnprintf(char *buf, size_t size, const char *fmt, ...);
|
||
|
int snprintf(char *buf, size_t size, const char *fmt, ...);
|
||
|
int vsnprintf(char *buf, size_t size, const char *fmt, va_list args);
|
||
|
int sscanf(const char *buf, const char *fmt, ...);
|
||
|
|
||
|
#endif /* VSPRINTF_H */
|