utf8proc

A clean C library for processing UTF-8 Unicode data
git clone https://git.sinitax.com/juliastrings/utf8proc
Log | Files | Refs | README | LICENSE | sfeed.txt

commit f981f04d0b54d8502237bd659e3bbb6c324e35ed
parent e1fdad0ca9dc518b429439b6f4eac546a1bdd0de
Author: Steven G. Johnson <stevenj@alum.mit.edu>
Date:   Sat, 28 Mar 2015 14:38:59 -0400

fix some stray references to mojibake in the bench/ directory

Diffstat:
Mbench/Makefile | 6+++---
Mbench/bench.c | 2+-
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/bench/Makefile b/bench/Makefile @@ -5,10 +5,10 @@ CFLAGS = -O2 -std=c99 -pedantic -Wall all: bench -LIBMOJIBAKE = ../libmojibake.a +LIBUTF8PROC = ../libutf8proc.a -bench: bench.o util.o $(LIBMOJIBAKE) - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ bench.o util.o $(LIBMOJIBAKE) +bench: bench.o util.o $(LIBUTF8PROC) + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ bench.o util.o $(LIBUTF8PROC) DATAURL = https://raw.githubusercontent.com/duerst/eprun/master/benchmark DATAFILES = Deutsch_.txt Japanese_.txt Korean_.txt Vietnamese_.txt diff --git a/bench/bench.c b/bench/bench.c @@ -2,7 +2,7 @@ #include <stdlib.h> #include <string.h> -#include "mojibake.h" +#include "utf8proc.h" #include "util.h" int main(int argc, char **argv)