mirror of
https://github.com/ProjectDreamland/area51.git
synced 2024-11-01 11:11:47 +01:00
27 lines
855 B
C++
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 ) );
|
|
}
|
|
|
|
//==============================================================================
|