list.h
上传用户:tany51
上传日期:2013-06-12
资源大小:1397k
文件大小:3k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*
  2.  * Copyright (C) 1999,2000  Ross Combs (rocombs@cs.nmsu.edu)
  3.  *
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version 2
  7.  * of the License, or (at your option) any later version.
  8.  *
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  17.  */
  18. #ifndef INCLUDED_LIST_TYPES
  19. #define INCLUDED_LIST_TYPES
  20. typedef struct elem
  21. #ifdef LIST_INTERNAL_ACCESS
  22. {
  23.     void *        data;
  24.     struct elem * next;
  25. }
  26. #endif
  27. t_elem;
  28. typedef struct list
  29. #ifdef LIST_INTERNAL_ACCESS
  30. {
  31.     unsigned int  len;
  32.     t_elem *      head;
  33.     t_elem *      tail;
  34. }
  35. #endif
  36. t_list;
  37. #endif
  38. /*****/
  39. #ifndef JUST_NEED_TYPES
  40. #ifndef INCLUDED_LIST_PROTOS
  41. #define INCLUDED_LIST_PROTOS
  42. #ifdef USE_CHECK_ALLOC
  43. extern t_list * list_create_real(char const * fn, unsigned int ln) ;
  44. # define list_create() list_create_real(__FILE__"{list_create}",__LINE__)
  45. #else
  46. extern t_list * list_create(void) ;
  47. #endif
  48. extern int list_destroy(t_list * list);
  49. extern int list_purge(t_list * list);
  50. extern int list_check(t_list const * list);
  51. extern unsigned int list_get_length(t_list const * list);
  52. #ifdef USE_CHECK_ALLOC
  53. extern int list_prepend_data_real(t_list * list, void * data, char const * fn, unsigned int ln);
  54. # define list_prepend_data(L,D) list_prepend_data_real(L,D,__FILE__"{list_prepend_data}",__LINE__)
  55. #else
  56. extern int list_prepend_data(t_list * list, void * data);
  57. #endif
  58. #ifdef USE_CHECK_ALLOC
  59. extern int list_append_data_real(t_list * list, void * data, char const * fn, unsigned int ln);
  60. # define list_append_data(L,D) list_append_data_real(L,D,__FILE__"{list_append_data}",__LINE__)
  61. #else
  62. extern int list_append_data(t_list * list, void * data);
  63. #endif
  64. extern t_elem * list_get_elem_by_data(t_list const * list, void const * data);
  65. extern t_elem const * list_get_elem_by_data_const(t_list const * list, void const * data);
  66. extern int list_remove_data(t_list * list, void const * data); /* delete matching item */
  67. extern int list_remove_elem(t_list * list, t_elem * elem);
  68. extern void * list_get_data_by_pos(t_list const * list, unsigned int pos);
  69. #ifdef LIST_DEBUG
  70. extern t_elem * list_get_first_real(t_list const * list, char const * fn, unsigned int ln);
  71. # define list_get_first(L) list_get_first_real(L,__FILE__,__LINE__)
  72. #else
  73. extern t_elem * list_get_first(t_list const * list);
  74. #endif
  75. #ifdef LIST_DEBUG
  76. extern t_elem const * list_get_first_const_real(t_list const * list, char const * fn, unsigned int ln);
  77. # define list_get_first_const(L) list_get_first_const_real(L,__FILE__,__LINE__)
  78. #else
  79. extern t_elem const * list_get_first_const(t_list const * list);
  80. #endif
  81. extern void * elem_get_data(t_elem const * elem);
  82. extern int elem_set_data(t_elem * elem, void * data);
  83. extern t_elem * elem_get_next(t_elem const * elem);
  84. extern t_elem const * elem_get_next_const(t_elem const * elem);
  85. #define LIST_TRAVERSE(list,curr) for (curr=(list)?list_get_first(list):(NULL); curr; curr=elem_get_next(curr))
  86. #define LIST_TRAVERSE_CONST(list,curr) for (curr=(list)?list_get_first_const(list):(NULL); curr; curr=elem_get_next_const(curr))
  87. #endif
  88. #endif