diff options
author | dimitri staessens <dimitri.staessens@ugent.be> | 2017-09-23 13:17:53 +0000 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@ugent.be> | 2017-09-23 13:17:53 +0000 |
commit | 7cef269be64f64b920763c6f2455931422c8bfe9 (patch) | |
tree | 22cd650f6d5596b31de5566525079ede2270c1b1 /include | |
parent | 3fac7e4d0a97f84c8d8a2ccac246abac399ff9fa (diff) | |
parent | 7c8857ebae5e7c4ac2420e66299aad1774ce0e87 (diff) | |
download | ouroboros-7cef269be64f64b920763c6f2455931422c8bfe9.tar.gz ouroboros-7cef269be64f64b920763c6f2455931422c8bfe9.zip |
Merged in dstaesse/ouroboros/be-bugfixes (pull request #614)
Some bugfixes
Diffstat (limited to 'include')
-rw-r--r-- | include/ouroboros/bitmap.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/ouroboros/bitmap.h b/include/ouroboros/bitmap.h index a5921fc7..d40bb509 100644 --- a/include/ouroboros/bitmap.h +++ b/include/ouroboros/bitmap.h @@ -32,17 +32,17 @@ struct bmp; struct bmp * bmp_create(size_t bits, ssize_t offset); -void bmp_destroy(struct bmp * b); +void bmp_destroy(struct bmp * bmp); -ssize_t bmp_allocate(struct bmp * instance); +ssize_t bmp_allocate(struct bmp * bmp); -int bmp_release(struct bmp * instance, +int bmp_release(struct bmp * bmp, ssize_t id); -bool bmp_is_id_valid(struct bmp * b, +bool bmp_is_id_valid(struct bmp * bmp, ssize_t id); -bool bmp_is_id_used(struct bmp * b, +bool bmp_is_id_used(struct bmp * bmp, ssize_t id); #endif /* OUROBOROS_BITMAP_H */ |