- Move source code from `trunk` into program root directory. - Update build files and include paths. - Note: Line endings standardised from `CRLF` > `LF`, so best to view diffs with whitespace changes hidden.
6 lines
158 B
C
6 lines
158 B
C
#include <stdio.h>
|
|
|
|
int vsnprintf(char* buffer, size_t count, const char* format, va_list va)
|
|
{
|
|
return _vsnprintf(_out_buffer, buffer, count, format, va);
|
|
} |