Fix for isspace

This commit is contained in:
David Anderson
2004-09-17 19:04:44 +00:00
parent 54a00466e8
commit 3419aa4dc5
2 changed files with 327 additions and 16 deletions

View File

@ -71,7 +71,7 @@ public:
void append(const char *t)
{
Grow(cSize + strlen(t));
Grow(cSize + strlen(t) + 1);
strcat(v, t);
cSize = strlen(v);
}
@ -187,7 +187,7 @@ public:
{
if (c == '\f' || c == '\n' ||
c == '\t' || c == '\r' ||
c == 'v' || c == ' ')
c == '\v' || c == ' ')
{
return true;
}