mirror of
https://github.com/samba-team/samba.git
synced 2025-08-03 04:22:09 +03:00
lib/util: Make "struct bitmap" abstract
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Michael Adam <obnox@samba.org>
This commit is contained in:
committed by
Michael Adam
parent
da284b3765
commit
7f4d55d1b8
@ -20,6 +20,11 @@
|
||||
#include "includes.h"
|
||||
#include "lib/util/bitmap.h"
|
||||
|
||||
struct bitmap {
|
||||
uint32_t *b;
|
||||
unsigned int n;
|
||||
};
|
||||
|
||||
/* these functions provide a simple way to allocate integers from a
|
||||
pool without repetition */
|
||||
|
||||
|
Reference in New Issue
Block a user