cleaned up code

This commit is contained in:
2009-02-17 02:11:31 +00:00
parent 66b21c8eab
commit 26b4ecd16e
19 changed files with 492 additions and 470 deletions

View File

@ -412,14 +412,14 @@ void StdAwk::freeMem (void* ptr)
}
// character handling primitive
Awk::bool_t StdAwk::isType (cint_t c, ccls_type_t type)
Awk::bool_t StdAwk::isType (cint_t c, ccls_id_t type)
{
return qse_ccls_is (c, (qse_ccls_type_t)type);
return qse_ccls_is (c, (qse_ccls_id_t)type);
}
Awk::cint_t StdAwk::transCase (cint_t c, ccls_type_t type)
Awk::cint_t StdAwk::transCase (cint_t c, ccls_id_t type)
{
return qse_ccls_to (c, (qse_ccls_type_t)type);
return qse_ccls_to (c, (qse_ccls_id_t)type);
}
// miscellaneous primitive