comparison th_file.h @ 459:7fca448847a3

Oops, fix C++ guards in headers.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 17 Feb 2018 23:35:20 +0200
parents 85fa3d333556
children 77d1af382e08
comparison
equal deleted inserted replaced
458:694c85f4e354 459:7fca448847a3
8 /// @file 8 /// @file
9 /// @brief File, path, etc. related helper functions 9 /// @brief File, path, etc. related helper functions
10 #ifndef TH_FILE_H 10 #ifndef TH_FILE_H
11 #define TH_FILE_H 11 #define TH_FILE_H
12 12
13 #ifdef HAVE_CONFIG_H
14 #include "config.h"
15 #endif
16
17 #include "th_util.h" 13 #include "th_util.h"
18 14
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
19 18
20 // Platform specific defines 19 // Platform specific defines
21 #if defined(TH_PLAT_WINDOWS) 20 #if defined(TH_PLAT_WINDOWS)
22 # define TH_DIR_SEPARATOR '\\' 21 # define TH_DIR_SEPARATOR '\\'
23 #else 22 #else