changeset 91:eca8ffe4e260

Move C++ guard.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 21 May 2014 20:55:51 +0300
parents 2b1f7f1ca8e4
children 40568456eb5b
files th_string.h
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/th_string.h	Tue May 20 04:27:30 2014 +0300
+++ b/th_string.h	Wed May 21 20:55:51 2014 +0300
@@ -8,15 +8,15 @@
 #ifndef TH_STRING_H
 #define TH_STRING_H
 
-#ifdef __cplusplus
-extern "C" {
-#endif
-
 #include "th_util.h"
 #include <stdlib.h>
 #include <ctype.h>
 #include <stdarg.h>
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 /* Macros
  */
 #define th_isalnum(c)   isalnum((int)(unsigned char) c)