|
| 1 | +/* |
| 2 | + Copyright (C) 2011 Joseph A. Adams ([email protected]) |
| 3 | + All rights reserved. |
| 4 | +
|
| 5 | + Permission is hereby granted, free of charge, to any person obtaining a copy |
| 6 | + of this software and associated documentation files (the "Software"), to deal |
| 7 | + in the Software without restriction, including without limitation the rights |
| 8 | + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 9 | + copies of the Software, and to permit persons to whom the Software is |
| 10 | + furnished to do so, subject to the following conditions: |
| 11 | +
|
| 12 | + The above copyright notice and this permission notice shall be included in |
| 13 | + all copies or substantial portions of the Software. |
| 14 | +
|
| 15 | + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 16 | + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 17 | + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 18 | + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 19 | + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 20 | + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 21 | + THE SOFTWARE. |
| 22 | +*/ |
| 23 | + |
| 24 | +#ifdef _MSC_VER |
| 25 | +#define _CRT_SECURE_NO_WARNINGS |
| 26 | +#define _CRT_NONSTDC_NO_DEPRECATE |
| 27 | +#endif |
| 28 | + |
| 29 | +#include <stdio.h> |
| 30 | +#include <stdlib.h> |
| 31 | +#include <stdarg.h> |
| 32 | + |
| 33 | +#ifdef snprintf |
| 34 | +#undef snprintf |
| 35 | +#endif |
| 36 | + |
| 37 | +static int c99_vsnprintf(char* str, size_t size, const char* format, va_list ap) |
| 38 | +{ |
| 39 | + int count = -1; |
| 40 | + |
| 41 | + if (size != 0) |
| 42 | + count = _vsnprintf_s(str, size, _TRUNCATE, format, ap); |
| 43 | + if (count == -1) |
| 44 | + count = _vscprintf(format, ap); |
| 45 | + |
| 46 | + return count; |
| 47 | +} |
| 48 | + |
| 49 | +int snprintf(char* str, size_t size, const char* format, ...) |
| 50 | +{ |
| 51 | + int count; |
| 52 | + va_list ap; |
| 53 | + |
| 54 | + va_start(ap, format); |
| 55 | + count = c99_vsnprintf(str, size, format, ap); |
| 56 | + va_end(ap); |
| 57 | + |
| 58 | + return count; |
| 59 | +} |
0 commit comments