Home | History | Annotate | Download | only in roken

Lines Matching refs:str

45 strsep(char **str, const char *delim)
47 char *save = *str;
48 if(*str == NULL)
50 *str = *str + strcspn(*str, delim);
51 if(**str == 0)
52 *str = NULL;
54 **str = 0;
55 (*str)++;