blob: 000af13ea88e4925221312433b767dce5f7a104e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* combining_table.h */
/* Automatically generated at 2008-03-18T11:38:08.165877 */
#ifndef COMBINING_TABLE_H
#define COMBINING_TABLE_H 1
#include <stddef.h>
#include <stdint.h>
struct translation {
uint32_t key;
unsigned combining_class;
};
extern const struct translation _wind_combining_table[];
extern const size_t _wind_combining_table_size;
#endif /* COMBINING_TABLE_H */
|