mirror of
https://github.com/AsahiLinux/m1n1
synced 2025-02-25 11:57:23 +00:00
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
|