Ejemplo n.º 1
0
void c_strlist_destroy(c_strlist_t *strlist) {

  if (strlist == NULL) {
    return;
  }

  c_strlist_clear(strlist);
  SAFE_FREE(strlist->vector);
  SAFE_FREE(strlist);
}
Ejemplo n.º 2
0
void SocketApi::slotClearExcludesList()
{
    c_strlist_clear(_excludes);
}
Ejemplo n.º 3
0
void csync_exclude_clear(CSYNC *ctx) {
  c_strlist_clear(ctx->excludes);
}