is_str_alpha( const szString[] ){ new cChar, iPos while( cChar = szString[iPos++] ) { if( !isalpha(cChar) ) { return false } } return true}