Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 1997

Show
Ignore:
Timestamp:
04/05/07 03:12:46 (2 years ago)
Author:
kris
Message:

added some more commentary

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/tango/sys/win32/CodePage.d

    r1996 r1997  
    4444        /********************************************************************** 
    4545 
    46                 Convert utf8 text to a a codepage representation 
     46                Convert utf8 text to a codepage representation 
    4747 
    4848                page  0     - the ansi code page 
     
    5858                         representing converted text 
    5959 
    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 
    6164 
    6265        **********************************************************************/ 
     
    8386                returns: a slice of the provided output buffer  
    8487                         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 
    8593 
    8694        **********************************************************************/