Re: [fpc-pascal] 16bit String

2006-09-08 Thread Felipe Monteiro de Carvalho
Doesn´t WideString do the job for you? If you want a array of chars you can just use: MyString: array[0..255] of WideChar; -- Felipe Monteiro de Carvalho ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/li

[fpc-pascal] 16bit String

2006-09-08 Thread Antal
I was thingink, what if someone should implement in the fpc compiler a 16 bit String, which should work exactly as the 8bit string, which only can handle a 256 char long string. As long as we can define a string as an array of char, what if we can have a 16bit string, as an array of word? And