mirror of
https://github.com/wichtounet/thor-os.git
synced 2025-08-04 01:36:10 -04:00
21 lines
785 B
C++
21 lines
785 B
C++
//=======================================================================
|
|
// Copyright Baptiste Wicht 2013-2014.
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
// (See accompanying file LICENSE_1_0.txt or copy at
|
|
// http://www.boost.org/LICENSE_1_0.txt)
|
|
//=======================================================================
|
|
|
|
//Is made to be included as is in a header file
|
|
//
|
|
//Implement is provided in printf_def.hpp which must be included in
|
|
//source file
|
|
|
|
std::string sprintf(const std::string& format, ...);
|
|
std::string vsprintf(const std::string& format, va_list va);
|
|
|
|
void printf(const std::string& format, ...);
|
|
void vprintf(const std::string& format, va_list va);
|
|
|
|
//Definition of this function must be provided
|
|
void __printf(const std::string& formatted);
|