// // UNICODE-PUT.VDM C.Z. 11.05.2001 // // Tries to build a simple UNICODE text from an ASCII/ANSI text // by simply expanding the 8 bit characters to 16 bit characters by 0x00. // // Attention: I don't know if the 2 first bytes in a UNICODE document // are always 0xFF 0xFE! // BoF Ins_Char(255) // insert header, see above! Ins_Char(254) While(! AT_EoF){ Char(1) Ins_Char(0) } BoF