2006-12-29 04:21:09 +01:00
|
|
|
#ifndef _INCLUDE_SOURCEMOD_STRINGUTIL_H_
|
|
|
|
#define _INCLUDE_SOURCEMOD_STRINGUTIL_H_
|
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
#include "sp_vm_api.h"
|
2006-12-30 08:23:17 +01:00
|
|
|
#include "sp_typeutil.h"
|
2006-12-29 04:21:09 +01:00
|
|
|
|
|
|
|
using namespace SourcePawn;
|
|
|
|
|
|
|
|
size_t atcprintf(char *buffer, size_t maxlen, const char *format, IPluginContext *pCtx, const cell_t *params, int *param);
|
2006-12-30 00:28:44 +01:00
|
|
|
const char *stristr(const char *str, const char *substr);
|
2006-12-30 08:23:17 +01:00
|
|
|
unsigned int strncopy(char *dest, const char *src, size_t count);
|
2007-01-07 09:47:38 +01:00
|
|
|
size_t gnprintf(char *buffer, size_t maxlen, const char *format, void **args);
|
2007-01-07 02:30:28 +01:00
|
|
|
size_t UTIL_Format(char *buffer, size_t maxlength, const char *fmt, ...);
|
2006-12-29 04:21:09 +01:00
|
|
|
|
|
|
|
#endif // _INCLUDE_SOURCEMOD_STRINGUTIL_H_
|