-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVSnprintf.cpp
More file actions
41 lines (32 loc) · 812 Bytes
/
VSnprintf.cpp
File metadata and controls
41 lines (32 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/**
* \file VSnprintf.cpp
* \brief vsnprintf, detect buffer
*/
#include <StdStream/StdStream.h>
#include <StdTest/StdTest.h>
#include <Stl.h>
//-------------------------------------------------------------------------------------------------
int
bufferSize(
const char *format,
...
)
{
int iRv {};
va_list args;
va_start(args, format);
iRv = ::vsnprintf(NULL, 0, format, args);
va_end(args);
return iRv + 1; // safe byte for \0
}
//-------------------------------------------------------------------------------------------------
int main(int, char **)
{
int iRv = bufferSize("Width trick: %*d", 5, 10);
std::cout << STD_TRACE_VAR(iRv) << std::endl;
return 0;
}
//-------------------------------------------------------------------------------------------------
#if OUTPUT
iRv: 19
#endif