//----------------------------------------------------------------------
bool chkOutKeyword(const char *str, uint len)
{
  if ( !checkLine(len) )
    return true;
  OutKeyword(str, len);
  return false;
}
示例#2
0
文件: oututil.cpp 项目: nealey/vera
//----------------------------------------------------------------------
uchar chkOutKeyword(const char *str, unsigned len)
{
  if ( !checkLine(len)) return(1 );
  OutKeyword(str, len);
  return(0);
}