From 9f1ef73e9622c7c2490d73e96520e5feef9ee530 Mon Sep 17 00:00:00 2001 From: Sean Barrett Date: Thu, 7 Feb 2019 04:40:32 -0800 Subject: [PATCH] stb_sprintf: minor reformatting --- stb_sprintf.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/stb_sprintf.h b/stb_sprintf.h index 0ad26b2..30d2404 100644 --- a/stb_sprintf.h +++ b/stb_sprintf.h @@ -225,8 +225,10 @@ static stbsp__int32 stbsp__real_to_parts(stbsp__int64 *bits, stbsp__int32 *expo, static char stbsp__period = '.'; static char stbsp__comma = ','; static char stbsp__digitpair[201] = - "0001020304050607080910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576" - "7778798081828384858687888990919293949596979899"; + "00010203040506070809101112131415161718192021222324" + "25262728293031323334353637383940414243444546474849" + "50515253545556575859606162636465666768697071727374" + "75767778798081828384858687888990919293949596979899"; STBSP__PUBLICDEF void STB_SPRINTF_DECORATE(set_separators)(char pcomma, char pperiod) {