Home | History | Annotate | Download | only in libyasm

Lines Matching defs:strp

52     char *strp;
97 strp = &str[len-1];
98 while (len > 0 && isspace(*strp)) {
99 *strp-- = '\0';
104 strp = str;
107 while (isspace(*strp))
108 strp++;
111 if (*strp == '#')
119 if (isam && strncmp(strp, "include", 7) == 0 && isspace(strp[7])) {
120 strp += 7;
121 while (isspace(*strp))
122 strp++;
125 inc->filename = malloc(strlen(strp)+1);
126 strcpy(inc->filename, strp);
132 if (strncmp(strp, "YASM_MODULES", 12) != 0)
134 strp += 12;
135 while (isspace(*strp))
136 strp++;
137 if (strncmp(strp, "+=", 2) != 0 && *strp != '=')
139 if (*strp == '+')
140 strp++;
141 strp++;
142 while (isspace(*strp))
143 strp++;
149 while (isspace(*strp))
150 *strp-- = '\0';
155 while (*strp != '\0') {
159 while (*strp != '\0' && !isspace(*strp))
160 modules[num_modules][len++] = *strp++;
164 while (isspace(*strp))
165 strp++;
193 strp = str+8;
194 while (*strp != '\0' && *strp != '_') {
196 strp++;
198 *strp = '\0';
209 strp = str;
210 while (*strp != '\0' && *strp != '_')
211 strp++;
212 *strp++ = '\0';
215 str, strp, str);