From db9124f1de0478dcac525009b6f1589b44a7edd8 Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Fri, 26 Apr 2019 16:59:41 -0700 Subject: Apply format changes from #2048 (#2059) Mass change to apply clang-format to everything. We are applying this in a PR by me so the (git) blame is all mine ;) but @aheejin did all the work to get clang-format set up and all the manual work to tidy up some things to make the output nicer in #2048 --- src/emscripten-optimizer/snprintf.h | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) (limited to 'src/emscripten-optimizer/snprintf.h') diff --git a/src/emscripten-optimizer/snprintf.h b/src/emscripten-optimizer/snprintf.h index 86335661d..22c8d8202 100644 --- a/src/emscripten-optimizer/snprintf.h +++ b/src/emscripten-optimizer/snprintf.h @@ -19,34 +19,34 @@ #include -// Visual Studio does not support C99, so emulate snprintf support for it manually. +// Visual Studio does not support C99, so emulate snprintf support for it +// manually. #ifdef _MSC_VER #define snprintf c99_snprintf -inline int c99_vsnprintf(char* str, size_t size, const char* format, va_list ap) -{ - int count = -1; +inline int +c99_vsnprintf(char* str, size_t size, const char* format, va_list ap) { + int count = -1; - if (size != 0) - count = _vsnprintf_s(str, size, _TRUNCATE, format, ap); - if (count == -1) - count = _vscprintf(format, ap); + if (size != 0) + count = _vsnprintf_s(str, size, _TRUNCATE, format, ap); + if (count == -1) + count = _vscprintf(format, ap); - return count; + return count; } -inline int c99_snprintf(char* str, size_t size, const char* format, ...) -{ - int count; - va_list ap; +inline int c99_snprintf(char* str, size_t size, const char* format, ...) { + int count; + va_list ap; - va_start(ap, format); - count = c99_vsnprintf(str, size, format, ap); - va_end(ap); + va_start(ap, format); + count = c99_vsnprintf(str, size, format, ap); + va_end(ap); - return count; + return count; } #endif -- cgit v1.2.3