Home | History | Annotate | Download | only in libop

Lines Matching refs:str

20 static char * next_part(char const ** str)
25 if ((*str)[0] == '\0')
28 if ((*str)[0] == ':')
29 ++(*str);
31 c = *str;
36 if (c == *str)
39 ret = op_xstrndup(*str, c - *str);
40 *str += c - *str;
45 static int parse_ulong(char const * str)
49 value = strtoul(str, &end, 0);
51 fprintf(stderr, "Invalid event part %s\n", str);