Sourcechkformat.d
Documentationhttps://dlang.org/phobos/dmd_chkformat.html
checkPrintfFormat(Locloc, scope const char[]format, scope Expression[]args, boolisVa_list, ErrorSinkeSink);Locloc | location for error messages |
char[]format | format string |
Expression[]args | arguments to match with format string |
boolisVa_list | if a "v" function (format check only) |
ErrorSinkeSink | where the error messages go |
ReferencesC99 7.19.6.1https://www.cplusplus.com/reference/cstdio/printf/
checkScanfFormat(Locloc, scope const char[]format, scope Expression[]args, boolisVa_list, ErrorSinkeSink);Locloc | location for error messages |
char[]format | format string |
Expression[]args | arguments to match with format string |
boolisVa_list | if a "v" function (format check only) |
ErrorSinkeSink | where the error messages go |
ReferencesC99 7.19.6.2https://www.cplusplus.com/reference/cstdio/scanf/