bool my_isdigit(const OS::String& str) { int len = str.getLen(); for(int i = 0; i < len; i++){ if(!isdigit(str[i])){ return false; } } return len > 0; }
bool inComplete() { OS::String str = toString(-1); int lmsg = str.getLen(); const char *msg = str; if (lmsg >= marklen && strcmp(msg + lmsg - marklen, EOFMARK) == 0) { pop(); return true; } return false; }