Lines Matching defs:a_str
99 * Arguments: a_str - [RO, *RW] - (char **)
113 * NOTE: The input string a_str will be freed with 'free'
123 pkgstrRemoveLeadingWhitespace(char **a_str)
129 assert(a_str != (char **)NULL);
133 if (*a_str == (char *)NULL) {
136 o_str = *a_str;
142 free(*a_str);
143 *a_str = (char *)NULL;
162 /* free string - *a_str is reset to NULL by free */
163 free(*a_str);
164 *a_str = (char *)NULL;
173 free(*a_str);
174 *a_str = o_str;