From 8721e773aae5c2533da1776ed64c0a68219a693a Mon Sep 17 00:00:00 2001 From: Gerald Schmidt Date: Tue, 21 Aug 2007 20:27:15 +0000 Subject: [PATCH] Omitted unused header file. --- src/utf8validator.h | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100755 src/utf8validator.h diff --git a/src/utf8validator.h b/src/utf8validator.h deleted file mode 100755 index 4e10224..0000000 --- a/src/utf8validator.h +++ /dev/null @@ -1,30 +0,0 @@ -#ifndef UTF8_VALIDATOR_H -#define UTF8_VALIDATOR_H - -inline bool is8Bit(); - -inline bool isUtf8TupelIndicator( unsigned char ch ); - -inline bool isUtf8OverlongTupel( unsigned char ch ); - -inline bool isUtf8TripleIndicator( unsigned char ch ); - -inline bool isUtf8OverlongTriple( unsigned char ch1, unsigned char ch2 ); - -inline bool isUtf8QuartetIndicator( unsigned char ch ); - -inline bool isUtf8OverlongQuartet( unsigned char ch1, unsigned char ch2 ); - -inline bool isUtf8QuintetIndicator( unsigned char ch ); - -inline bool isUtf8OverlongQuintet( unsigned char ch1, unsigned char ch2 ); - -inline bool isUtf8SextetIndicator( unsigned char ch ); - -inline bool isUtf8OverlongSextet( unsigned char ch1, unsigned char ch2 ); - -inline bool isUtf8Continuation( unsigned char ch ); - -bool isValidUtf8( const char * s, unsigned int len ); - -#endif