#include <string> stock is_empty_string(sz[]){ new i = 0 while ( sz[i] ){ if ( !isspace(sz[i]) ){ return 0 i++ } return 1 }