-
Notifications
You must be signed in to change notification settings - Fork 0
Code_c_map
lemmiix edited this page Nov 5, 2025
·
2 revisions
struct map_uint_bool {
unsigned int key;
bool active;
};This struct provides the basic members to create a key-value map.
@member key: the identifier of the map (which is actually not properly implemented as a traditional "map". This is actually more of a set with value pairs)
@member active: either TRUE or FALSE value

