Home | History | Annotate | Download | only in genmacro

Lines Matching defs:strp

40     char *strp;
80 strp = str;
83 charp = strp;
100 while (*strp == ' ' || *strp == '\t')
101 strp++;
102 len = strlen(strp);
103 while (len > 0 && (strp[len-1] == ' ' || strp[len-1] == '\t' ||
104 strp[len-1] == '\n')) {
105 strp[len-1] = '\0';
115 while (*strp != '\0') {
116 if (*strp == '\\' || *strp == '"')
118 fputc(*strp, out);
119 strp++;