I'm trying to convert an old program that is written in C99 to C11 to be compiled with MinGW. I came across this line of code here
contenu[/size] = buffer;
and this code
output[k] = ((S[(S[i][/i] + S[j])%SIZE]) ^ texte[k]);
I'm not used to c99. Where it says [/size] and [/i] are those old c99 syntax or just someone writing the code wrong?
Also I'm using the -std=c99 toggle for MinGW.