On 07/15/2014 04:56 PM, Ali Çehreli wrote:
> char buffer[100];
[...]
> char buffer[100] = void;
Before others point out, those are in C syntax by mistake. :) They
should preferably be:
char[100] buffer;
[...]
char[100] buffer = void;
Ali