Files
bootloader/apps/elftosb/common/format_string.h
László Monda e6c1fce5b4 Add KBOOT.
2016-08-10 01:45:15 +02:00

19 lines
426 B
C++

/*
* File: format_string.h
*
* Copyright (c) Freescale Semiconductor, Inc. All rights reserved.
* See included license file for license details.
*/
#if !defined(_format_string_h_)
#define _format_string_h_
#include <string>
#include <stdexcept>
/*!
* \brief Returns a formatted STL string using printf format strings.
*/
std::string format_string(const char *fmt, ...);
#endif // _format_string_h_