common.h (229B)
1 #ifndef COMMON_H_ 2 #define COMMON_H_ 3 4 #include <assert.h> 5 #include <reading.h> 6 #include <smallset.h> 7 #include <stdint.h> 8 #include <stdio.h> 9 10 #define ASIZE (2 * 26) 11 12 size_t map(const char c); 13 size_t prio(const uint64_t x); 14 15 #endif