arraylist.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /*
  2. * $Id: arraylist.h,v 1.4 2006/01/26 02:16:28 mclark Exp $
  3. *
  4. * Copyright (c) 2004, 2005 Metaparadigm Pte. Ltd.
  5. * Michael Clark <michael@metaparadigm.com>
  6. *
  7. * This library is free software; you can redistribute it and/or modify
  8. * it under the terms of the MIT license. See COPYING for details.
  9. *
  10. */
  11. #ifndef _arraylist_h_
  12. #define _arraylist_h_
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. #define ARRAY_LIST_DEFAULT_SIZE 32
  17. typedef void (array_list_free_fn) (void *data);
  18. struct array_list
  19. {
  20. void **array;
  21. int length;
  22. int size;
  23. array_list_free_fn *free_fn;
  24. };
  25. extern struct array_list*
  26. array_list_new(array_list_free_fn *free_fn);
  27. extern void
  28. array_list_free(struct array_list *al);
  29. extern void*
  30. array_list_get_idx(struct array_list *al, int i);
  31. extern int
  32. array_list_put_idx(struct array_list *al, int i, void *data);
  33. extern int
  34. array_list_add(struct array_list *al, void *data);
  35. extern int
  36. array_list_length(struct array_list *al);
  37. extern void
  38. array_list_sort(struct array_list *arr, int(*compar)(const void *, const void *));
  39. #ifdef __cplusplus
  40. }
  41. #endif
  42. #endif