]> granicus.if.org Git - libexpat/commitdiff
examples: Indent preprocessor code
authorSebastian Pipping <sebastian@pipping.org>
Sat, 26 Aug 2017 15:01:59 +0000 (17:01 +0200)
committerSebastian Pipping <sebastian@pipping.org>
Sat, 26 Aug 2017 15:01:59 +0000 (17:01 +0200)
expat/examples/elements.c
expat/examples/outline.c

index 56e5756b75cc85986537697350b6011067d62d21..31d52c33d71c50014369d5c39fd924ccb96eedb1 100644 (file)
 #include <expat.h>
 
 #ifdef XML_LARGE_SIZE
-#if defined(XML_USE_MSC_EXTENSIONS) && _MSC_VER < 1400
-#define XML_FMT_INT_MOD "I64"
+# if defined(XML_USE_MSC_EXTENSIONS) && _MSC_VER < 1400
+#  define XML_FMT_INT_MOD "I64"
+# else
+#  define XML_FMT_INT_MOD "ll"
+# endif
 #else
-#define XML_FMT_INT_MOD "ll"
-#endif
-#else
-#define XML_FMT_INT_MOD "l"
+# define XML_FMT_INT_MOD "l"
 #endif
 
 #ifdef XML_UNICODE_WCHAR_T
-#include <wchar.h>
-#define XML_FMT_STR "ls"
-#define xcputs(s) do { fputws((s), stdout); putchar('\n'); } while (0)
+# include <wchar.h>
+# define XML_FMT_STR "ls"
+# define xcputs(s) do { fputws((s), stdout); putchar('\n'); } while (0)
 #else
-#define XML_FMT_STR "s"
-#define xcputs(s) puts(s)
+# define XML_FMT_STR "s"
+# define xcputs(s) puts(s)
 #endif
 
 static void XMLCALL
index fd2535d366b04c22a0b9afba7470eb97ed1d9699..3e0bbaa498c8a06c6b6c30ed603afbe9b8df273e 100644 (file)
 #include <expat.h>
 
 #ifdef XML_LARGE_SIZE
-#if defined(XML_USE_MSC_EXTENSIONS) && _MSC_VER < 1400
-#define XML_FMT_INT_MOD "I64"
+# if defined(XML_USE_MSC_EXTENSIONS) && _MSC_VER < 1400
+#  define XML_FMT_INT_MOD "I64"
+# else
+#  define XML_FMT_INT_MOD "ll"
+# endif
 #else
-#define XML_FMT_INT_MOD "ll"
-#endif
-#else
-#define XML_FMT_INT_MOD "l"
+# define XML_FMT_INT_MOD "l"
 #endif
 
 #ifdef XML_UNICODE_WCHAR_T
-#define XML_FMT_STR "ls"
+# define XML_FMT_STR "ls"
 #else
-#define XML_FMT_STR "s"
+# define XML_FMT_STR "s"
 #endif
 
 #define BUFFSIZE        8192