2022-12-21 08:29:33 +00:00
|
|
|
#ifndef SOCKS_STDIO_H_
|
|
|
|
|
#define SOCKS_STDIO_H_
|
|
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2023-03-09 19:54:27 +00:00
|
|
|
int snprintf(char *buffer, size_t count, const char *format, ...);
|
|
|
|
|
int vsnprintf(char *buffer, size_t count, const char *format, va_list va);
|
2022-12-21 08:29:33 +00:00
|
|
|
|
|
|
|
|
int fctprintf(void (*out)(char character, void *arg), void *arg, const char*format, ...);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif
|