removed: hidden variable 'old_url' in emacs template

git-svn-id: svn://ttmath.org/publicrep/cmslu/trunk@527 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
2009-11-18 01:58:38 +00:00
parent 13b0204427
commit 848afac803
7 changed files with 93 additions and 25 deletions

View File

@@ -308,6 +308,16 @@ return buffer;
}
const char * ToStr(int value)
{
static char buffer[100];
sprintf(buffer, "%d", value);
return buffer;
}
bool IsWhite(int s)
{
if( s==' ' || s=='\t' || s==13 )