Nov. 9, 2016
1:38 a.m.
On 8 November 2016 at 14:42, Esteban Lorenzano <estebanlm@gmail.com> wrote:
(always with Char100 example in mind):
s := MyStructure fromHandle: blah. string := s data readString.
should work.
IIRC, #readString works correctly only for correctly null-terminated strings. If not, it will read beyond the structure size , until it find a zero byte somewhere in memory, and thus, results may vary :)
Esteban
On 8 Nov 2016, at 14:31, Dimitris Chloupis <kilon.alios@gmail.com> wrote:
I feel like stupid but I cannot find a way to convert an Array of Characters to a String , I can do with a do: and join characters converted to strings to a single string but it feels too many steps.
Is there a simpler way ?
-- Best regards, Igor Stasenko.