search.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /*
  2. * Declarations for System V style searching functions.
  3. * Copyright (C) 1995-1999, 2000 Free Software Foundation, Inc.
  4. * This file is part of the GNU C Library.
  5. *
  6. * The GNU C Library is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * The GNU C Library is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with the GNU C Library; if not, write to the Free
  18. * Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  19. * 02111-1307 USA.
  20. */
  21. /*
  22. * Based on code from uClibc-0.9.30.3
  23. * Extensions for use within U-Boot
  24. * Copyright (C) 2010 Wolfgang Denk <wd@denx.de>
  25. */
  26. #ifndef _SEARCH_H
  27. #define _SEARCH_H 1
  28. #include <stddef.h>
  29. #define __set_errno(val) do { errno = val; } while (0)
  30. /*
  31. * Prototype structure for a linked-list data structure.
  32. * This is the type used by the `insque' and `remque' functions.
  33. */
  34. /* For use with hsearch(3). */
  35. typedef int (*__compar_fn_t) (__const void *, __const void *);
  36. typedef __compar_fn_t comparison_fn_t;
  37. /* Action which shall be performed in the call the hsearch. */
  38. typedef enum {
  39. FIND,
  40. ENTER
  41. } ACTION;
  42. typedef struct entry {
  43. char *key;
  44. char *data;
  45. } ENTRY;
  46. /* Opaque type for internal use. */
  47. struct _ENTRY;
  48. /*
  49. * Family of hash table handling functions. The functions also
  50. * have reentrant counterparts ending with _r. The non-reentrant
  51. * functions all work on a signle internal hashing table.
  52. */
  53. /* Data type for reentrant functions. */
  54. struct hsearch_data {
  55. struct _ENTRY *table;
  56. unsigned int size;
  57. unsigned int filled;
  58. };
  59. /* Create a new hashing table which will at most contain NEL elements. */
  60. extern int hcreate(size_t __nel);
  61. extern int hcreate_r(size_t __nel, struct hsearch_data *__htab);
  62. /* Destroy current internal hashing table. */
  63. extern void hdestroy(void);
  64. extern void hdestroy_r(struct hsearch_data *__htab);
  65. /*
  66. * Search for entry matching ITEM.key in internal hash table. If
  67. * ACTION is `FIND' return found entry or signal error by returning
  68. * NULL. If ACTION is `ENTER' replace existing data (if any) with
  69. * ITEM.data.
  70. * */
  71. extern ENTRY *hsearch(ENTRY __item, ACTION __action);
  72. extern int hsearch_r(ENTRY __item, ACTION __action, ENTRY ** __retval,
  73. struct hsearch_data *__htab);
  74. /* Search and delete entry matching ITEM.key in internal hash table. */
  75. extern int hdelete(const char *__key);
  76. extern int hdelete_r(const char *__key, struct hsearch_data *__htab);
  77. extern ssize_t hexport(const char __sep, char **__resp, size_t __size);
  78. extern ssize_t hexport_r(struct hsearch_data *__htab,
  79. const char __sep, char **__resp, size_t __size);
  80. extern int himport(const char *__env, size_t __size, const char __sep,
  81. int __flag);
  82. extern int himport_r(struct hsearch_data *__htab,
  83. const char *__env, size_t __size, const char __sep,
  84. int __flag);
  85. /* Flags for himport() / himport_r() */
  86. #define H_NOCLEAR 1 /* do not clear hash table before importing */
  87. #endif /* search.h */