X-Git-Url: https://git.distorted.org.uk/~mdw/disorder/blobdiff_plain/460b9539a7c15580e41a71bbc0f47ae776238915..be2d9f37e1fdeb7cc5746453e6dbcae0b25a7f74:/lib/utf8.c diff --git a/lib/utf8.c b/lib/utf8.c index d4dc472..9ca228c 100644 --- a/lib/utf8.c +++ b/lib/utf8.c @@ -23,14 +23,6 @@ #include "utf8.h" -int validutf8(const char *s) { - unsigned long c; - - while(*s) - PARSE_UTF8(s, c, return 0); - return 1; -} - /* Local Variables: c-basic-offset:2 @@ -38,4 +30,3 @@ comment-column:40 fill-column:79 End: */ -/* arch-tag:WGilqGFnXhhAeU5ZnbG8oQ */