Home | History | Annotate | Download | only in patched-yasm

Lines Matching defs:strp

40     char *strp;
72 strp = str;
75 len = strlen(strp);
76 while (len > 0 && (strp[len-1] == ' ' || strp[len-1] == '\t' ||
77 strp[len-1] == '\n')) {
78 strp[len-1] = '\0';
84 while (*strp != '\0') {
85 if (*strp == '\\' || *strp == '"')
87 fputc(*strp, out);
88 strp++;