amxmodx/amxmodx/format.h

12 lines
405 B
C
Raw Normal View History

2006-02-22 00:33:19 +00:00
#ifndef _INCLUDE_FORMATTING_H
#define _INCLUDE_FORMATTING_H
//Amx Templatized Cell Printf
template <typename D, typename S>
size_t atcprintf(D *buffer, size_t maxlen, const S *format, AMX *amx, cell *params, int *param);
const char *translate(AMX *amx, cell amxaddr, const char *key);
bool translate_bcompat(AMX *amx, cell *source, const char **_key, const char **_def);
2006-02-22 00:33:19 +00:00
#endif //_INCLUDE_FORMATTING_H