X-Git-Url: http://git.archive.openwrt.org/?a=blobdiff_plain;f=utils.h;h=7ee65a04a14594f3498c55c6fa265d9b2ac12e79;hb=31353099a886fc4fac4293989330847ea51e44d0;hp=77de1f0c8ea62c1a3a14dcef6678051e08184fa5;hpb=480c24c6df4446ba484228ecf3212fc6144a54bc;p=project%2Fprocd.git diff --git a/utils.h b/utils.h index 77de1f0..7ee65a0 100644 --- a/utils.h +++ b/utils.h @@ -22,9 +22,13 @@ struct blobmsg_list_node { #define blobmsg_list_init(list, type, field) \ __blobmsg_list_init(list, offsetof(type, field), sizeof(type)) +#define blobmsg_list_for_each(list, element) \ + avl_for_each_element(&(list)->avl, element, avl) + void __blobmsg_list_init(struct blobmsg_list *list, int offset, int len); int blobmsg_list_fill(struct blobmsg_list *list, void *data, int len); void blobmsg_list_free(struct blobmsg_list *list); bool blobmsg_list_equal(struct blobmsg_list *l1, struct blobmsg_list *l2); +void blobmsg_list_move(struct blobmsg_list *list, struct blobmsg_list *src); #endif