sourcemod/sourcepawn/decompiler/platform_util.h
David Anderson 04021ed8b1 Initial import/sketch of opcode analyzer (bug 3279).
Uses single static assignment to recover expression trees from straight-line byte code.
2008-09-23 21:20:40 -07:00

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_