list.h
上传用户:jmzj888
上传日期:2007-01-02
资源大小:220k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright Abandoned 1996 TCX DataKonsult AB & Monty Program KB & Detron HB
  2.    This file is public domain and comes with NO WARRANTY of any kind */
  3. #ifndef _list_h_
  4. #define _list_h_
  5. #ifdef __cplusplus
  6. extern "C" {
  7. #endif
  8. typedef struct st_list {
  9.   struct st_list *prev,*next;
  10.   void *data;
  11. } LIST;
  12. typedef int (*list_walk_action)(void *,void *);
  13. extern LIST *list_add(LIST *root,LIST *element);
  14. extern LIST *list_delete(LIST *root,LIST *element);
  15. extern LIST *list_cons(void *data,LIST *root);
  16. extern LIST *list_reverse(LIST *root);
  17. extern void list_free(LIST *root,pbool free_data);
  18. extern uint list_length(LIST *list);
  19. extern int list_walk(LIST *list,list_walk_action action,gptr argument);
  20. #define rest(a) ((a)->next)
  21. #define list_push(a,b) (a)=list_cons((b),(a))
  22. #define list_pop(A) {LIST *old=(A); (A)=list_delete(old,old) ; my_free((gptr) old,MYF(MY_FAE)); }
  23. #ifdef __cplusplus
  24. }
  25. #endif
  26. #endif