Show hashlist.h syntax highlighted
/*
* $Id: hashlist.h 14345 2007-08-07 07:48:54Z rmanfredi $
*
* Copyright (c) 2003, Christian Biere
*
*----------------------------------------------------------------------
* This file is part of gtk-gnutella.
*
* gtk-gnutella is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* gtk-gnutella is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with gtk-gnutella; if not, write to the Free Software
* Foundation, Inc.:
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*----------------------------------------------------------------------
*/
#ifndef _hashlist_h_
#define _hashlist_h_
#include "common.h"
#include "glib-missing.h"
typedef struct hash_list_iter hash_list_iter_t;
typedef struct hash_list hash_list_t;
hash_list_t *hash_list_new(GHashFunc hash_func, GEqualFunc eq_func);
void hash_list_free(hash_list_t **hl_ptr);
gpointer hash_list_remove(hash_list_t *hl, gconstpointer key);
gpointer hash_list_shift(hash_list_t *hl);
void hash_list_append(hash_list_t *hl, gconstpointer key);
void hash_list_prepend(hash_list_t *hl, gconstpointer key);
void hash_list_insert_sorted(hash_list_t *hl, gconstpointer key,
GCompareFunc func);
void hash_list_moveto_head(hash_list_t *hl, gconstpointer key);
void hash_list_moveto_tail(hash_list_t *hl, gconstpointer key);
gpointer hash_list_head(const hash_list_t *hl);
gpointer hash_list_tail(const hash_list_t *hl);
gpointer hash_list_next(hash_list_t *hl, gconstpointer key);
gpointer hash_list_previous(hash_list_t *hl, gconstpointer key);
guint hash_list_length(const hash_list_t *hl);
hash_list_iter_t *hash_list_iterator(hash_list_t *hl);
hash_list_iter_t *hash_list_iterator_tail(hash_list_t *hl);
void hash_list_iter_release(hash_list_iter_t **iter_ptr);
gboolean hash_list_iter_has_next(const hash_list_iter_t *i);
gpointer hash_list_iter_next(hash_list_iter_t *i);
gpointer hash_list_iter_previous(hash_list_iter_t *i);
gpointer hash_list_iter_follower(hash_list_iter_t *i);
gboolean hash_list_contains(hash_list_t *hl,
gconstpointer key, gconstpointer *orig_key);
void hash_list_foreach(const hash_list_t *hl, GFunc func, gpointer user_data);
#endif /* _hashlist_h_ */
See more files for this project here