]> Kevux Git Server - fll/commitdiff
Bugfix: put '} // extern C' into correct location
authorKevin Day <thekevinday@gmail.com>
Tue, 10 Sep 2019 00:17:20 +0000 (19:17 -0500)
committerKevin Day <thekevinday@gmail.com>
Tue, 10 Sep 2019 00:18:02 +0000 (19:18 -0500)
level_3/byte_dump/c/private-byte_dump.h

index 180fa578a6cb69f70c16c915ee7d07b02ad25cda..e0c8f06c06086c3fa14acfda6b7f214e8ca6bc50 100644 (file)
 extern "C" {
 #endif
 
-#ifdef __cplusplus
-} // extern "C"
-#endif
-
 /**
  * Dump the contents of the file to standard out.
  *
@@ -70,7 +66,6 @@ extern "C" {
   extern f_bool byte_dump_print_character_fragment(const byte_dump_data data, const f_utf_string_dynamic characters, const uint8_t invalid[], const int8_t width_utf, const int8_t byte_current, uint8_t *previous_bytes, uint8_t *previous_invalid, uint8_t *column, uint64_t *row);
 #endif // _di_byte_dump_print_character_fragment_
 
-
 /**
  * Print the text representation alongside the hex display.
  *
@@ -114,4 +109,8 @@ extern "C" {
   extern void byte_dump_print_file_error(const fl_color_context context, const f_status status, const f_string function, const f_string file_name);
 #endif // _di_byte_dump_print_file_error_
 
+#ifdef __cplusplus
+} // extern "C"
+#endif
+
 #endif // _PRIVATE_byte_dump_h