codebased/common/stringmap.h
2023-04-14 02:17:45 +02:00

22 lines
363 B
C

#ifndef STRINGMAP_H
#define STRINGMAP_H
#include "common/stringmap.h"
#include <stdbool.h>
#include <stddef.h>
typedef struct StringMapEntry {
bool deleted;
size_t key_hash, value;
} StringMapEntry;
struct StringMap {
StringMapEntry* data;
size_t length, capacity;
};
void stringmap_create(StringMap* map);
void stringmap_destroy(StringMap* map);
#endif