Changeset 1997
- Timestamp:
- 04/05/07 03:12:46 (2 years ago)
- Files:
-
- trunk/tango/sys/win32/CodePage.d (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/tango/sys/win32/CodePage.d
r1996 r1997 44 44 /********************************************************************** 45 45 46 Convert utf8 text to a acodepage representation46 Convert utf8 text to a codepage representation 47 47 48 48 page 0 - the ansi code page … … 58 58 representing converted text 59 59 60 Note that the input must be utf8 encoded 60 Note that the input must be utf8 encoded. Note also 61 that the dst output should be sufficiently large to 62 accomodate the output; a size of 2*src.length would 63 be enough to host almost any conversion 61 64 62 65 **********************************************************************/ … … 83 86 returns: a slice of the provided output buffer 84 87 representing converted text 88 89 Note that the input will be utf8 encoded. Note also 90 that the dst output should be sufficiently large to 91 accomodate the output; a size of 2*src.length would 92 be enough to host almost any conversion 85 93 86 94 **********************************************************************/












