struct CvStringHashNode

All the keys (names) of elements in the readed file storage are stored in the hash to speed up the lookup operations:

#include <types_c.h>

struct CvStringHashNode
{
    // fields

    unsigned hashval;
    struct CvStringHashNode* next;
    CvString str;
};