Lines Matching defs:a_new_term
231 *@param a_new_term the term to append.
232 *@return the list of terms with the a_new_term appended to it.
235 cr_term_append_term (CRTerm * a_this, CRTerm * a_new_term)
239 g_return_val_if_fail (a_new_term, NULL);
242 return a_new_term;
246 cur->next = a_new_term;
247 a_new_term->prev = cur;
257 *@param a_new_term the term to prepend.
261 cr_term_prepend_term (CRTerm * a_this, CRTerm * a_new_term)
263 g_return_val_if_fail (a_this && a_new_term, NULL);
265 a_new_term->next = a_this;
266 a_this->prev = a_new_term;
268 return a_new_term;