2021-05-15, 12:18 AM
(This post was last modified: 2021-05-15, 12:19 AM by PutuSuhartawan.)
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