types.h - libgrapheme - unicode string library
HTML git clone git://git.suckless.org/libgrapheme
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
types.h (257B)
---
1 /* See LICENSE file for copyright and license details. */
2 #ifndef TYPES_H
3 #define TYPES_H
4
5 #include <stddef.h>
6 #include <stdint.h>
7
8 struct break_test {
9 uint_least32_t *cp;
10 size_t cplen;
11 size_t *len;
12 size_t lenlen;
13 char *descr;
14 };
15
16 #endif /* TYPES_H */