1#ifndef MD4C_ENTITY_H
2#define MD4C_ENTITY_H
3
4#include <stdlib.h>
5
6typedef struct ENTITY_tag ENTITY;
7struct ENTITY_tag {
8 const char* name;
9 unsigned codepoints[2];
10};
11
12const ENTITY* entity_lookup(const char* name, size_t name_size);
13
14#endif