Open Model Railroad Network (OpenMRN)
Loading...
Searching...
No Matches
StringPrintf.hxx
Go to the documentation of this file.
1
35#ifndef _UTILS_STIRNGPRINTF_HXX_
36#define _UTILS_STIRNGPRINTF_HXX_
37
38#include <string>
39#include <stdarg.h>
40#include <stdio.h>
41
42#include "utils/macros.h"
43
48std::string StringPrintf(const char *format, ...)
49 __attribute__((format(printf, 1, 2)));
50
51#endif // _UTILS_STIRNGPRINTF_HXX_
std::string StringPrintf(const char *format,...)
Conveninence utility to do a printf directly into a C++ string.