comparison th_datastruct.h @ 751:3091fd1987e9

Rename function argument.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 09 Jan 2023 09:49:13 +0200
parents ca837a4417f5
children 64cb2b1777a9
comparison
equal deleted inserted replaced
750:56594b498180 751:3091fd1987e9
127 } th_ptrlist_t; 127 } th_ptrlist_t;
128 128
129 129
130 int th_ptrlist_init(th_ptrlist_t *list, const size_t ninitial, const size_t ngrow); 130 int th_ptrlist_init(th_ptrlist_t *list, const size_t ninitial, const size_t ngrow);
131 int th_ptrlist_new(th_ptrlist_t **list, const size_t ninitial, const size_t ngrow); 131 int th_ptrlist_new(th_ptrlist_t **list, const size_t ninitial, const size_t ngrow);
132 int th_ptrlist_append(th_ptrlist_t *list, void *str); 132 int th_ptrlist_append(th_ptrlist_t *list, void *data);
133 void th_ptrlist_free(th_ptrlist_t *list, void (*mdeallocator)(void *data)); 133 void th_ptrlist_free(th_ptrlist_t *list, void (*mdeallocator)(void *data));
134 134
135 135
136 #ifdef __cplusplus 136 #ifdef __cplusplus
137 } 137 }