mirror of
https://github.com/encounter/ogws.git
synced 2026-03-30 11:33:37 -07:00
19 lines
373 B
C
19 lines
373 B
C
#ifndef MSL_PRINTF_H
|
|
#define MSL_PRINTF_H
|
|
#include <stdarg.h>
|
|
#include <stddef.h>
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int vprintf(const char*, va_list);
|
|
int sprintf(char*, const char*, ...);
|
|
int snprintf(char*, size_t, const char*, ...);
|
|
int vsprintf(char*, const char*, va_list);
|
|
int vsnprintf(char*, size_t, const char*, va_list);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|