Searched refs:a_new_term (Results 1 - 2 of 2) sorted by relevance

/inkscape/src/libcroco/
H A Dcr-term.h168 CRTerm * cr_term_append_term (CRTerm *a_this, CRTerm *a_new_term) ;
170 CRTerm * cr_term_prepend_term (CRTerm *a_this, CRTerm *a_new_term) ;
H A Dcr-term.c231 *@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) argument
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) argument
263 g_return_val_if_fail (a_this && a_new_term, NUL
[all...]

Completed in 15 milliseconds