FreeCalypso > hg > themwi-system-sw
comparison include/number_db_file.h @ 4:4ad5deafaa87
themwi-update-numdb utility written, compiles
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 26 Jun 2022 11:39:14 -0800 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
3:d712d518059e | 4:4ad5deafaa87 |
---|---|
1 /* | |
2 * This header file defines structures written into the binary form | |
3 * of the number database file. | |
4 */ | |
5 | |
6 struct numdb_file_hdr { | |
7 uint32_t owned_number_count; | |
8 uint32_t short_number_count; | |
9 }; | |
10 | |
11 struct short_number_map { | |
12 uint32_t short_code; | |
13 uint32_t prefix; | |
14 }; |