1 /* -*- c-basic-offset:2; tab-width:2; indent-tabs-mode:nil -*- */
2 
3 #ifndef __EF_PROPERTY_H__
4 #define __EF_PROPERTY_H__
5 
6 typedef enum ef_property {
7   EF_COMBINING = 0x1u,
8 
9   /* only for UCS */
10   EF_FULLWIDTH = 0x2u,
11   EF_AWIDTH = 0x4u
12 
13 } ef_property_t;
14 
15 #endif
16