|
Revision 825, 1.0 kB
(checked in by walter, 1 year ago)
|
bugzilla 4389 ICE(constfold.c, expression.c), or wrong code: string~=dchar in CTFE
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
// Compiler implementation of the D programming language |
|---|
| 2 |
// utf.h |
|---|
| 3 |
// Copyright (c) 2003-2010 by Digital Mars |
|---|
| 4 |
// All Rights Reserved |
|---|
| 5 |
// written by Walter Bright |
|---|
| 6 |
// http://www.digitalmars.com |
|---|
| 7 |
// License for redistribution is by either the Artistic License |
|---|
| 8 |
// in artistic.txt, or the GNU General Public License in gnu.txt. |
|---|
| 9 |
// See the included readme.txt for details. |
|---|
| 10 |
|
|---|
| 11 |
#ifndef DMD_UTF_H |
|---|
| 12 |
#define DMD_UTF_H |
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
typedef unsigned dchar_t; |
|---|
| 16 |
|
|---|
| 17 |
int utf_isValidDchar(dchar_t c); |
|---|
| 18 |
|
|---|
| 19 |
const char *utf_decodeChar(unsigned char *s, size_t len, size_t *pidx, dchar_t *presult); |
|---|
| 20 |
const char *utf_decodeWchar(unsigned short *s, size_t len, size_t *pidx, dchar_t *presult); |
|---|
| 21 |
|
|---|
| 22 |
const char *utf_validateString(unsigned char *s, size_t len); |
|---|
| 23 |
|
|---|
| 24 |
extern int isUniAlpha(dchar_t); |
|---|
| 25 |
|
|---|
| 26 |
void utf_encodeChar(unsigned char *s, dchar_t c); |
|---|
| 27 |
void utf_encodeWchar(unsigned short *s, dchar_t c); |
|---|
| 28 |
|
|---|
| 29 |
int utf_codeLengthChar(dchar_t c); |
|---|
| 30 |
int utf_codeLengthWchar(dchar_t c); |
|---|
| 31 |
|
|---|
| 32 |
int utf_codeLength(int sz, dchar_t c); |
|---|
| 33 |
void utf_encode(int sz, void *s, dchar_t c); |
|---|
| 34 |
|
|---|
| 35 |
#endif |
|---|