]> Kevux Git Server - fll/commitdiff
Cleanup: move the location of _di_string_format_pointers_
authorKevin Day <kevin@kevux.org>
Wed, 7 Mar 2012 03:47:35 +0000 (21:47 -0600)
committerKevin Day <kevin@kevux.org>
Wed, 7 Mar 2012 03:47:35 +0000 (21:47 -0600)
level_0/f_strings/c/strings.h

index 49d0c5023d4d4a782730cba621042604f9c55b96..05cbb51a99b48d711cde9ef065935275e3d04722 100644 (file)
@@ -43,6 +43,23 @@ extern "C"{
   #define f_placeholder '\0'
 #endif // _di_f_have_placeholder_
 
+#ifndef _di_string_format_pointers_
+  #define string_format_string             "%s"
+  #define string_format_character          "%c"
+  #define string_format_integer            "%i"
+  #define string_format_unsigned           "%u"
+  #define string_format_double             "%d"
+  #define string_format_float              "%f"
+  #define string_format_long_integer       "%li"
+  #define string_format_long_unsigned      "%lu"
+  #define string_format_long_double        "%ld"
+  #define string_format_long_float         "%lf"
+  #define string_format_long_long_integer  "%lli"
+  #define string_format_long_long_unsigned "%llu"
+  #define string_format_long_long_double   "%lld"
+  #define string_format_long_long_float    "%llf"
+#endif // _di_string_format_pointers_
+
 // define the basic string type
 #ifndef _di_f_have_string_
   typedef f_autochar *f_string;
@@ -61,23 +78,6 @@ extern "C"{
     status = f_adjust((void **) & string, sizeof(f_string), old_length, new_length)
 #endif // _di_f_have_string_
 
-#ifndef _di_string_format_pointers_
-  #define string_format_string             "%s"
-  #define string_format_character          "%c"
-  #define string_format_integer            "%i"
-  #define string_format_unsigned           "%u"
-  #define string_format_double             "%d"
-  #define string_format_float              "%f"
-  #define string_format_long_integer       "%li"
-  #define string_format_long_unsigned      "%lu"
-  #define string_format_long_double        "%ld"
-  #define string_format_long_float         "%lf"
-  #define string_format_long_long_integer  "%lli"
-  #define string_format_long_long_unsigned "%llu"
-  #define string_format_long_long_double   "%lld"
-  #define string_format_long_long_float    "%llf"
-#endif // _di_string_format_pointers_
-
 #ifndef _di_f_string_length_
   typedef f_u_long f_string_length;