Lines Matching defs:str
727 char *str = toybuf;
735 fgets(str, 80, stdin);
736 } while (!isdigit(*str) && (*str != '\n')
737 && (*str != '-') && (*str != '+') && (!isblank(*str)));
738 while (isblank(*str)) str++; //remove leading white spaces
739 if (*str == '+' || *str == '-') {
740 int minus = (*str == '-');
743 val = atoi(str + 1);
744 while (isdigit(*++str)) use_default = 0;
746 switch (*str) {
781 val = atoi(str);
782 while (isdigit(*str)) {
783 str++;