![]() 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 <wchar.h> #include <limits.h> #include <ctype.h> wint_t __fputwc_unlocked(wchar_t c, FILE *f) { char mbc[MB_LEN_MAX]; int l; #ifndef __EMSCRIPTEN__ f->mode |= f->mode+1; if (isascii(c)) { c = putc_unlocked(c, f); } else if (f->wpos + MB_LEN_MAX < f->wend) { l = wctomb((void *)f->wpos, c); if (l < 0) c = WEOF; else f->wpos += l; } else { l = wctomb(mbc, c); if (l < 0 || __fwritex((void *)mbc, l, f) < l) c = WEOF; } return c; #else if (isascii(c)) { c = fputc(c, f); } else { l = wctomb(mbc, c); if (l < 0) c = WEOF; else { for (int i = 0; i < l; i++) { if (fputc(mbc[i], f) == EOF) { c = WEOF; break; } } } } #endif return c; } wint_t fputwc(wchar_t c, FILE *f) { FLOCK(f); c = __fputwc_unlocked(c, f); FUNLOCK(f); return c; } weak_alias(__fputwc_unlocked, fputwc_unlocked); weak_alias(__fputwc_unlocked, putwc_unlocked);