Re: [dev] [lnanosmtp]

2016-06-11 Thread jd
Connor Lane Smith wrote: > On 11 June 2016 at 07:34, wrote: > > Strings are not idenpotent. In C strings, any pointer inside > > of the string is a new string. Splitting strings is only > > writing a 0. Splitting strings in Pascal strings require to > > allocate a new chunk of memory and copy a

Re: [dev] [lnanosmtp]

2016-06-11 Thread Connor Lane Smith
On 11 June 2016 at 07:34, wrote: > Strings are not idenpotent. In C strings, any pointer inside > of the string is a new string. Splitting strings is only > writing a 0. Splitting strings in Pascal strings require to > allocate a new chunk of memory and copy all the characters. This is fixed wit