This repository has been archived on 2025-05-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
libcdio-osx/include/cdio/ds.h

100 lines
2.9 KiB
C
Raw Normal View History

2003-03-24 19:01:09 +00:00
/*
$Id: ds.h,v 1.3 2005/01/12 11:34:52 rocky Exp $
2003-03-24 19:01:09 +00:00
Copyright (C) 2000, 2004 Herbert Valerio Riedel <hvr@gnu.org>
Copyright (C) 2005 Rocky Bernstein <rocky@panix.com>
2003-03-24 19:01:09 +00:00
This program 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.
This program 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 this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/** \file ds.h
* \brief The top-level header for list-related data structures.
Note: this header will is slated to get removed and libcdio will use
glib.h routines instead.
*/
2003-03-24 19:01:09 +00:00
#ifndef __CDIO_DS_H__
#define __CDIO_DS_H__
#include <cdio/types.h>
2003-03-24 19:01:09 +00:00
/** opaque types... */
typedef struct _CdioList CdioList_t;
typedef struct _CdioListNode CdioListNode_t;
2003-03-24 19:01:09 +00:00
typedef int (*_cdio_list_cmp_func_t) (void *p_data1, void *p_data2);
typedef int (*_cdio_list_iterfunc_t) (void *p_data, void *p_user_data);
2003-03-24 19:01:09 +00:00
/** The below are given compatibility with old code. Please use
the above type names, not these. */
#define CdioList CdioList_t
#define CdioListNode CdioListNode_t
#define _cdio_list_cmp_func _cdio_list_cmp_func_t
#define _cdio_list_iterfunc _cdio_list_iterfunc_t
2003-03-24 19:01:09 +00:00
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
/** methods */
CdioList_t *_cdio_list_new (void);
2003-03-24 19:01:09 +00:00
void _cdio_list_free (CdioList_t *p_list, int free_data);
2003-03-24 19:01:09 +00:00
unsigned _cdio_list_length (const CdioList_t *list);
2003-03-24 19:01:09 +00:00
void _cdio_list_prepend (CdioList_t *p_list, void *p_data);
2003-03-24 19:01:09 +00:00
void _cdio_list_append (CdioList_t *p_list, void *p_data);
2003-03-24 19:01:09 +00:00
void _cdio_list_foreach (CdioList_t *p_list, _cdio_list_iterfunc_t func,
void *p_user_data);
2003-03-24 19:01:09 +00:00
CdioListNode_t *_cdio_list_find (CdioList_t *p_list,
_cdio_list_iterfunc_t cmp_func,
void *p_user_data);
2003-03-24 19:01:09 +00:00
#define _CDIO_LIST_FOREACH(node, list) \
for (node = _cdio_list_begin (list); node; node = _cdio_list_node_next (node))
/** node operations */
2003-03-24 19:01:09 +00:00
CdioListNode *_cdio_list_begin (const CdioList_t *p_list);
2003-03-24 19:01:09 +00:00
CdioListNode *_cdio_list_end (CdioList_t *p_list);
2003-03-24 19:01:09 +00:00
CdioListNode *_cdio_list_node_next (CdioListNode_t *p_node);
2003-03-24 19:01:09 +00:00
void _cdio_list_node_free (CdioListNode_t *p_node, int i_free_data);
2003-03-24 19:01:09 +00:00
void *_cdio_list_node_data (CdioListNode_t *p_node);
2003-03-24 19:01:09 +00:00
#ifdef __cplusplus
}
#endif /* __cplusplus */
2003-03-24 19:01:09 +00:00
#endif /* __CDIO_DS_H__ */
/*
* Local variables:
* c-file-style: "gnu"
* tab-width: 8
* indent-tabs-mode: nil
* End:
*/