This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

sscanf Sys/bios and C28x

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