libgrapheme

Freestanding C library for unicode string handling
git clone https://git.sinitax.com/suckless/libgrapheme
Log | Files | Refs | README | LICENSE | sfeed.txt

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
      8struct 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 */