Lines Matching refs:r_string
739 * Arguments: r_string - [RO, *RW] - (char **)
743 * from r_string provided
746 * separate one "token" from another in r_string
754 * NOTE: The input string r_string will be freed with 'free'
763 pkgstrRemoveToken(char **r_string, char *a_token, char *a_separators,
774 assert(r_string != (char **)NULL);
782 a_string = *r_string;
790 /* deallocate input string; free sets *r_string to NULL */
792 free(*r_string);
793 *r_string = (char *)NULL;
835 free(*r_string);
837 *r_string = copyString;