![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /proc/thread-self/root/usr/share/emscripten/system/lib/libc/musl/src/stdio/ |
Upload File : |
#include "stdio_impl.h" #include <limits.h> #include <string.h> #include <errno.h> #include <stdint.h> static size_t sn_write(FILE *f, const unsigned char *s, size_t l) { size_t k = f->wend - f->wpos; if (k > l) k = l; memcpy(f->wpos, s, k); f->wpos += k; /* pretend to succeed, but discard extra data */ return l; } // XXX Emscripten Call to musl-specific vfprintf for better asm.js performance, instead of the handwritten js function. #define vfprintf MUSL_vfprintf int vsnprintf(char *restrict s, size_t n, const char *restrict fmt, va_list ap) { int r; char b; FILE f = { .lbf = EOF, .write = sn_write, .lock = -1 }; if (n-1 > INT_MAX-1) { if (n) { errno = EOVERFLOW; return -1; } s = &b; n = 1; } /* Ensure pointers don't wrap if "infinite" n is passed in */ if (n > (char *)0+SIZE_MAX-s-1) n = (char *)0+SIZE_MAX-s-1; f.buf_size = n; f.buf = f.wpos = (void *)s; f.wbase = f.wend = (void *)(s+n); r = vfprintf(&f, fmt, ap); /* Null-terminate, overwriting last char if dest buffer is full */ if (n) f.wpos[-(f.wpos == f.wend)] = 0; return r; }