Add KBOOT.

This commit is contained in:
László Monda
2016-08-10 01:45:15 +02:00
commit e6c1fce5b4
9392 changed files with 3751375 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
/*
* 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_