mirror of
https://github.com/alliedmodders/sourcemod.git
synced 2025-12-07 18:38:37 +00:00
11 lines
322 B
C
11 lines
322 B
C
#ifndef _INCLUDE_SP_DECOMP_PLATFORM_UTIL_H_
|
|
#define _INCLUDE_SP_DECOMP_PLATFORM_UTIL_H_
|
|
|
|
#include <stdarg.h>
|
|
|
|
size_t Sp_Format(char *buffer, size_t maxlength, const char *fmt, ...);
|
|
size_t Sp_FormatArgs(char *buffer, size_t maxlength, const char *fmt, va_list ap);
|
|
|
|
|
|
#endif //_INCLUDE_SP_DECOMP_PLATFORM_UTIL_H_
|