Optimize the code that copies strings
[fio.git] / lib / axmap.h
index a7a6f9429b8163e5c5d239a402d1d9aabd83ce63..aa5976898c114fb8870865db753200a6140cc978 100644 (file)
@@ -5,10 +5,9 @@
 #include "types.h"
 
 struct axmap;
-struct axmap *axmap_new(unsigned long nr_bits);
+struct axmap *axmap_new(uint64_t nr_bits);
 void axmap_free(struct axmap *bm);
 
-void axmap_clear(struct axmap *axmap, uint64_t bit_nr);
 void axmap_set(struct axmap *axmap, uint64_t bit_nr);
 unsigned int axmap_set_nr(struct axmap *axmap, uint64_t bit_nr, unsigned int nr_bits);
 bool axmap_isset(struct axmap *axmap, uint64_t bit_nr);