~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to include/my_bitmap.h

  • Committer: Monty Taylor
  • Date: 2008-07-05 10:49:39 UTC
  • mto: This revision was merged to the branch mainline in revision 62.
  • Revision ID: monty@inaugust.com-20080705104939-72e6upltbm3aq0lw
Changes so that client/ builds cleanly with no warnings.
Commented out -Wunreachable-code for now, because there is too much of it
with all the #ifdef'd members. We'll add it back in for a second pass over
the code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
                                     const MY_BITMAP *map2);
51
51
extern my_bool bitmap_test_and_set(MY_BITMAP *map, uint bitmap_bit);
52
52
extern my_bool bitmap_test_and_clear(MY_BITMAP *map, uint bitmap_bit);
 
53
extern my_bool bitmap_fast_test_and_clear(MY_BITMAP *map, uint bitmap_bit);
53
54
extern my_bool bitmap_fast_test_and_set(MY_BITMAP *map, uint bitmap_bit);
54
55
extern uint bitmap_set_next(MY_BITMAP *map);
55
56
extern uint bitmap_get_first(const MY_BITMAP *map);