MagickCore  6.9.12-19
Convert, Edit, Or Compose Bitmap Images
token-private.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  UTFInfo
 

Macros

#define EILSEQ   ENOENT
 
#define MaxMultibyteCodes   6
 

Functions

static unsigned char * ConvertLatin1ToUTF8 (const unsigned char *magick_restrict content)
 
static int GetNextUTFCode (const char *magick_restrict text, unsigned int *magick_restrict octets)
 
static int GetUTFCode (const char *magick_restrict text)
 
static unsigned int GetUTFOctets (const char *magick_restrict text)
 
static MagickBooleanType IsUTFSpace (int code)
 
static MagickBooleanType IsUTFValid (int code)
 
static MagickBooleanType IsUTFAscii (int code)
 

Variables

static UTFInfo utf_info [MaxMultibyteCodes]
 

Macro Definition Documentation

#define EILSEQ   ENOENT

Referenced by GetNextUTFCode().

#define MaxMultibyteCodes   6

Referenced by GetNextUTFCode().

Function Documentation

static unsigned char* ConvertLatin1ToUTF8 ( const unsigned char *magick_restrict  content)
inlinestatic
static int GetNextUTFCode ( const char *magick_restrict  text,
unsigned int *magick_restrict  octets 
)
inlinestatic
static int GetUTFCode ( const char *magick_restrict  text)
inlinestatic

References GetNextUTFCode().

Referenced by FormatMagickCaption(), and GlobExpression().

static unsigned int GetUTFOctets ( const char *magick_restrict  text)
inlinestatic

References GetNextUTFCode().

Referenced by FormatMagickCaption(), and GlobExpression().

static MagickBooleanType IsUTFAscii ( int  code)
inlinestatic

References MagickFalse, and MagickTrue.

static MagickBooleanType IsUTFSpace ( int  code)
inlinestatic

References MagickFalse, and MagickTrue.

Referenced by FormatMagickCaption().

static MagickBooleanType IsUTFValid ( int  code)
inlinestatic

References MagickFalse, and MagickTrue.

Variable Documentation

UTFInfo utf_info[MaxMultibyteCodes]
static
Initial value:
=
{
{ 0x80, 0x00, 0x000007f, 0x0000000 },
{ 0xE0, 0xC0, 0x00007ff, 0x0000080 },
{ 0xF0, 0xE0, 0x000ffff, 0x0000800 },
{ 0xF8, 0xF0, 0x01fffff, 0x0010000 },
{ 0xFC, 0xF8, 0x03fffff, 0x0200000 },
{ 0xFE, 0xFC, 0x7ffffff, 0x4000000 },
}

Referenced by GetNextUTFCode().