00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef OR_TOOLS_BASE_STRINGPRINTF_H_
00015 #define OR_TOOLS_BASE_STRINGPRINTF_H_
00016
00017 #include <string>
00018
00019 #include "base/stringpiece.h"
00020
00021 namespace operations_research {
00022 std::string StringPrintf(const char* const format, ...);
00023 void SStringPrintf(std::string* const dst, const char* const format, ...);
00024 void StringAppendF(std::string* const dst, const char* const format, ...);
00025 }
00026 #endif // OR_TOOLS_BASE_STRINGPRINTF_H_