summaryrefslogtreecommitdiffstats
path: root/common/format_string.h
blob: a879d4ebcebd567171c03e0bc8317deb7c5d3cf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * 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_