mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-12-19 18:23:07 +00:00
8af9f1eb95
Signed-off-by: Hector Martin <marcan@marcan.st>
11 lines
230 B
C
11 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
|