2
0
mirror of https://github.com/openvswitch/ovs synced 2025-10-21 14:49:41 +00:00

shash: New function shash_find_and_delete().

This commit is contained in:
Ben Pfaff
2009-10-28 11:10:36 -07:00
parent 3adb8bf048
commit 837e80977c
2 changed files with 14 additions and 0 deletions

View File

@@ -46,6 +46,7 @@ struct shash_node *shash_add(struct shash *, const char *, void *);
void shash_delete(struct shash *, struct shash_node *);
struct shash_node *shash_find(const struct shash *, const char *);
void *shash_find_data(const struct shash *, const char *);
void *shash_find_and_delete(struct shash *, const char *);
struct shash_node *shash_first(const struct shash *);
#endif /* shash.h */