diff options
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.1/src/unicode.h')
-rw-r--r-- | debian/uncrustify-trinity/uncrustify-trinity-0.78.1/src/unicode.h | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/src/unicode.h b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/src/unicode.h deleted file mode 100644 index 28318f91..00000000 --- a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/src/unicode.h +++ /dev/null @@ -1,34 +0,0 @@ -/** - * @file unicode.h - * prototypes for unicode.cpp - * - * @author Ben Gardner - * @license GPL v2+ - */ - -#ifndef UNICODE_H_INCLUDED -#define UNICODE_H_INCLUDED - -#include "uncrustify_types.h" - - -void write_bom(); - - -/** - * @param ch the 31-bit char value - */ -void write_char(int ch); - - -void write_string(const UncText &text); - - -//! Figure out the encoding and convert to an int sequence -bool decode_unicode(const std::vector<UINT8> &in_data, std::deque<int> &out_data, char_encoding_e &enc, bool &has_bom); - - -void encode_utf8(int ch, std::vector<UINT8> &res); - - -#endif /* UNICODE_H_INCLUDED */ |