test windows.cfg: Added regression test for _wtoi_l and _atoi_l.
This commit is contained in:
parent
d3ba5a0829
commit
d131235a53
|
@ -14,6 +14,21 @@
|
|||
#include <time.h>
|
||||
#include <memory.h>
|
||||
#include <mbstring.h>
|
||||
#include <wchar.h>
|
||||
|
||||
int ignoredReturnValue__wtoi_l(const wchar_t *str, _locale_t locale)
|
||||
{
|
||||
// cppcheck-suppress ignoredReturnValue
|
||||
_wtoi_l(str,locale);
|
||||
return _wtoi_l(str,locale);
|
||||
}
|
||||
|
||||
int ignoredReturnValue__atoi_l(const char *str, _locale_t locale)
|
||||
{
|
||||
// cppcheck-suppress ignoredReturnValue
|
||||
_atoi_l(str,locale);
|
||||
return _atoi_l(str,locale);
|
||||
}
|
||||
|
||||
void invalidFunctionArg__fseeki64(FILE* stream, __int64 offset, int origin)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue