(svn r26777) -Codechange: use safe string functions in squirrel code as well, and prevent using the ones that are deemed unsafe

This commit is contained in:
rubidium
2014-09-06 19:54:35 +00:00
parent 962c1a3242
commit eb52e65bec
14 changed files with 104 additions and 20 deletions

View File

@@ -1,9 +1,14 @@
/* see copyright notice in squirrel.h */
#include "../../../stdafx.h"
#include <squirrel.h>
#include <sqstdaux.h>
#include <assert.h>
#include <string.h>
#include "../../../safeguards.h"
void sqstd_printcallstack(HSQUIRRELVM v)
{
SQPRINTFUNCTION pf = sq_getprintfunc(v);