From: Michael Schroeder Date: Fri, 9 Mar 2012 12:52:32 +0000 (+0100) Subject: - add map_setall() function (the macros are actually kinda deprecated) X-Git-Tag: BASE-SuSE-Code-12_2-Branch~107 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=42c30544e1f0b88bf44410193f0db559d5735775;p=platform%2Fupstream%2Flibsolv.git - add map_setall() function (the macros are actually kinda deprecated) --- diff --git a/src/bitmap.h b/src/bitmap.h index 3bad3c3..395e7a7 100644 --- a/src/bitmap.h +++ b/src/bitmap.h @@ -44,6 +44,10 @@ static inline void map_set(Map *m, int n) { MAPSET(m, n); } +static inline int map_setall(Map *m) +{ + MAPSETALL(m); +} static inline void map_clr(Map *m, int n) { MAPCLR(m, n);