open.mp forum
[Pawn] Help! How newbie fix sscanf warning: No default value found. Have System solution ? - Printable Version

+ open.mp forum (https://forum.open.mp)
-- Forum: SA-MP (https://forum.open.mp/forumdisplay.php?fid=3)
--- Forum: Pawn Scripting (https://forum.open.mp/forumdisplay.php?fid=10)
--- Thread: [Pawn] Help! How newbie fix sscanf warning: No default value found. Have System solution ? (/showthread.php?tid=2018)



Help! How newbie fix sscanf warning: No default value found. Have System solution ? - PutuSuhartawan - 2021-05-15

Code:
bool

FindDefaultStart(char ** const str)

{

// Skip the default value passed for optional parameters.

if (**str == '(')

{

(*str);

SkipWhitespace(str);

return true;

}

else

{

logprintf("sscanf warning: No default value found.");

}

return false;

}?

//?sscanf?warning:?No default value found



RE: Help! How newbie fix sscanf warning: No default value found. Have System solution ? - Y_Less - 2021-05-15

https://github.com/Y-Less/sscanf



Check the documentation.