#include "vcodepoint.h"
#include "vchar.h"
#include "vstring.h"
#include "vbinaryiostream.h"
#include "vexception.h"
#include "vhex.h"
Go to the source code of this file.
Defines |
#define | UTF8_BYTE_1_OF_2(mIntValue) (0xC0 + mIntValue / 0x40) |
#define | UTF8_BYTE_2_OF_2(mIntValue) (0x80 + mIntValue % 0x40) |
#define | UTF8_BYTE_1_OF_3(mIntValue) (0xE0 + mIntValue / 0x1000) |
#define | UTF8_BYTE_2_OF_3(mIntValue) (0x80 + mIntValue / 0x40 % 0x40) |
#define | UTF8_BYTE_3_OF_3(mIntValue) (0x80 + mIntValue % 0x40) |
#define | UTF8_BYTE_1_OF_4(mIntValue) (0xF0 + mIntValue / 0x40000) |
#define | UTF8_BYTE_2_OF_4(mIntValue) (0x80 + mIntValue / 0x1000 % 0x40) |
#define | UTF8_BYTE_3_OF_4(mIntValue) (0x80 + mIntValue / 0x40 % 0x40) |
#define | UTF8_BYTE_4_OF_4(mIntValue) (0x80 + mIntValue % 0x40) |
Detailed Description
Definition in file vcodepoint.cpp.