Lines Matching defs:str
148 static inline int has_ebcdic_char(const char *str)
152 for (i = 0; str[i]; i++)
153 if (str[i] & 0x80)
194 static void modify_fac_list(char *str)
200 while (*str) {
202 if (*str == '!') {
204 str++;
206 val = simple_strtoull(str, &endp, 0);
207 if (str == endp)
209 str = endp;
210 if (*str == '-') {
211 str++;
212 endval = simple_strtoull(str, &endp, 0);
213 if (str == endp)
215 str = endp;
223 if (*str != ',')
225 str++;