mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-12-20 02:33:06 +00:00
12 lines
230 B
C
12 lines
230 B
C
|
/* SPDX-License-Identifier: MIT */
|
||
|
|
||
|
#ifndef VSPRINTF_H
|
||
|
#define VSPRINTF_H
|
||
|
|
||
|
#include <stdarg.h>
|
||
|
|
||
|
int vsprintf(char *buf, const char *fmt, va_list args);
|
||
|
int vsnprintf(char *buf, size_t size, const char *fmt, va_list args);
|
||
|
|
||
|
#endif
|