area51/xCore/x_files/Implementation/x_vsprintf.cpp
Andrew Sampson 431f72b93a source
2021-08-27 19:22:41 -07:00

27 lines
855 B
C++

//==============================================================================
//
// x_vsprintf.cpp
//
//==============================================================================
//==============================================================================
// INCLUDES
//==============================================================================
#ifndef X_PLUS_HPP
#include "..\x_plus.hpp"
#endif
//==============================================================================
// FUNCTIONS
//==============================================================================
#include <stdio.h>
s32 x_vsprintf( char* pStr, const char* pFormatStr, x_va_list Args )
{
// TO DO : Implement x_vsprintf.
return( vsprintf( pStr, pFormatStr, Args ) );
}
//==============================================================================