I m using sscanf but it always returns 0. My simple code is :
int var1,var2;
char *buf="100";
var1=sscanf(buf,"%d",&var2);
> var1=var2=0;
in the config file I've tried to change default heap size to 0x400 as suggested in numerous forums and docs but the result is always the same : 0.
what is the trick to use this stdio function ?
Olivier