eval: Use nasm_error helpers
[nasm.git] / stdlib / vsnprintf.c
blobea83921c04ee88a27a256ad112a08064cc0a7654
1 /*
2 * vsnprintf()
4 * Poor substitute for a real vsnprintf() function for systems
5 * that don't have them...
6 */
8 #include "compiler.h"
10 #include <stdio.h>
11 #include <stdlib.h>
12 #include <stdarg.h>
13 #include <string.h>
15 #include "nasmlib.h"
16 #include "error.h"
18 #if !defined(HAVE_VSNPRINTF) && !defined(HAVE__VSNPRINTF)
20 #define BUFFER_SIZE 65536 /* Bigger than any string we might print... */
22 static char snprintf_buffer[BUFFER_SIZE];
24 int vsnprintf(char *str, size_t size, const char *format, va_list ap)
26 int rv, bytes;
28 if (size > BUFFER_SIZE) {
29 nasm_panic("vsnprintf: size (%d) > BUFFER_SIZE (%d)",
30 size, BUFFER_SIZE);
31 size = BUFFER_SIZE;
34 rv = vsprintf(snprintf_buffer, format, ap);
35 if (rv >= BUFFER_SIZE)
36 nasm_panic("vsnprintf buffer overflow");
38 if (size > 0) {
39 if ((size_t)rv < size-1)
40 bytes = rv;
41 else
42 bytes = size-1;
43 memcpy(str, snprintf_buffer, bytes);
44 str[bytes] = '\0';
47 return rv;
50 #endif