1
0
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:
Volker Lendecke
2012-10-30 22:43:21 +01:00
committed by Michael Adam
parent da284b3765
commit 7f4d55d1b8
2 changed files with 6 additions and 4 deletions

View File

@ -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 */