Sha256: 2596b168ad64f54e94b95779f654326c107f43e0645efa11185f8e9b04ec2f6f

Contents?: true

Size: 1.51 KB

Versions: 36

Compression:

Stored size: 1.51 KB

Contents

/* Copyright the libuv project contributors. All rights reserved.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to
 * deal in the Software without restriction, including without limitation the
 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
 * sell copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 * IN THE SOFTWARE.
 */

#if defined(_MSC_VER) && _MSC_VER < 1900

#include <stdio.h>
#include <stdarg.h>

/* Emulate snprintf() on MSVC<2015, _snprintf() doesn't zero-terminate the buffer
 * on overflow...
 */
int snprintf(char* buf, size_t len, const char* fmt, ...) {
  int n;
  va_list ap;
  va_start(ap, fmt);

  n = _vscprintf(fmt, ap);
  vsnprintf_s(buf, len, _TRUNCATE, fmt, ap);

  va_end(ap);
  return n;
}

#endif

Version data entries

36 entries across 35 versions & 3 rubygems

Version Path
mt-libuv-4.1.04 ext/libuv/src/win/snprintf.c
mt-libuv-4.1.03 ext/libuv/src/win/snprintf.c
mt-libuv-4.1.02 ext/libuv/src/win/snprintf.c
libuv-4.0.9 ext/libuv/src/win/snprintf.c
libuv-4.0.2 ext/libuv/src/win/snprintf.c
libuv-4.0.1 ext/libuv/src/win/snprintf.c
libuv-2.0.12 ext/libuv/src/win/snprintf.c
libuv-2.0.11 ext/libuv/src/win/snprintf.c
libuv-4.0.0 ext/libuv/src/win/snprintf.c
libuv-3.3.0 ext/libuv/src/win/snprintf.c
libuv-3.2.4 ext/libuv/src/win/snprintf.c
libuv-3.2.3 ext/libuv/src/win/snprintf.c
libuv-3.2.2 ext/libuv/src/win/snprintf.c
libuv-3.2.1 ext/libuv/src/win/snprintf.c
libuv-3.2.0 ext/libuv/src/win/snprintf.c
libuv-3.1.9 ext/libuv/src/win/snprintf.c
libuv-3.1.8 ext/libuv/src/win/snprintf.c
libuv-3.1.7 ext/libuv/src/win/snprintf.c
libuv-3.1.6 ext/libuv/src/win/snprintf.c
libuv-3.1.5 ext/libuv/src/win/snprintf.c