diff th_string.h @ 91:eca8ffe4e260

Move C++ guard.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 21 May 2014 20:55:51 +0300
parents 2b1f7f1ca8e4
children f6e0a32b5906
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)