libgrapheme

unicode string library
git clone git://git.suckless.org/libgrapheme
Log | Files | Refs | README | LICENSE

bidirectional.c (346B)


      1 /* See LICENSE file for copyright and license details. */
      2 #include <errno.h>
      3 #include <stdint.h>
      4 #include <stdio.h>
      5 #include <stdlib.h>
      6 #include <string.h>
      7 
      8 #include "../gen/bidirectional-test.h"
      9 #include "../grapheme.h"
     10 #include "util.h"
     11 
     12 #define NUM_ITERATIONS 100000
     13 
     14 int
     15 main(int argc, char *argv[])
     16 {
     17 	(void)argc;
     18 	(void)argv;
     19 
     20 	return 0;
     21 }