C-Macro-Collections icon indicating copy to clipboard operation
C-Macro-Collections copied to clipboard

cmc_collection base data type

Open LeoVen opened this issue 1 year ago • 0 comments

struct cmc_collection {
    enum cmc_collection_type type; // DEQUE, HASHMAP, LIST, STACK, etc
    const char *key_type;
    const char *val_type;
};

A cmc_collection is the common interface to all data structures so that you can differentiate them when storing them on void pointers

LeoVen avatar Dec 14 '23 01:12 LeoVen