• 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Pawn] Help! How newbie fix sscanf warning: No default value found. Have System solution ?
#1
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
  Reply
#2
https://github.com/Y-Less/sscanf



Check the documentation.
  Reply


Forum Jump: