25.07.2013, 15:15
S[64] should be with small letter - s[64]
Wrong
if(sscanf(params, "s[32]S[64]", choice, opstring))
Correct
if(sscanf(params, "s[32]s[64]", choice, opstring))
Wrong
if(sscanf(params, "s[32]S[64]", choice, opstring))
Correct
if(sscanf(params, "s[32]s[64]", choice, opstring))