mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 08:52:00 +00:00
Derp
git-svn-id: https://svn.eduke32.com/eduke32@8133 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
8de955053c
commit
6317706b03
1 changed files with 34 additions and 0 deletions
34
source/libxmp-lite/src/win32.c
Normal file
34
source/libxmp-lite/src/win32.c
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
/* _[v]snprintf() from msvcrt.dll might not nul terminate */
|
||||||
|
/* OpenWatcom-provided versions seem to behave the same... */
|
||||||
|
|
||||||
|
#if defined(_WIN32) || defined(__WATCOMC__)
|
||||||
|
|
||||||
|
#include <stdarg.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
#undef snprintf
|
||||||
|
#undef vsnprintf
|
||||||
|
|
||||||
|
int libxmp_vsnprintf(char *str, size_t sz, const char *fmt, va_list ap)
|
||||||
|
{
|
||||||
|
int rc = _vsnprintf(str, sz, fmt, ap);
|
||||||
|
if (sz != 0) {
|
||||||
|
if (rc < 0) rc = (int)sz;
|
||||||
|
if ((size_t)rc >= sz) str[sz - 1] = '\0';
|
||||||
|
}
|
||||||
|
return rc;
|
||||||
|
}
|
||||||
|
|
||||||
|
int libxmp_snprintf (char *str, size_t sz, const char *fmt, ...)
|
||||||
|
{
|
||||||
|
va_list ap;
|
||||||
|
int rc;
|
||||||
|
|
||||||
|
va_start (ap, fmt);
|
||||||
|
rc = _vsnprintf(str, sz, fmt, ap);
|
||||||
|
va_end (ap);
|
||||||
|
|
||||||
|
return rc;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
Loading…
Reference in a new issue