- Fixed header include guards

This commit is contained in:
2025-12-05 10:30:03 -05:00
parent 7f1dd245dc
commit a2abb58705
26 changed files with 82 additions and 82 deletions

View File

@@ -16,8 +16,8 @@
// along with this program. If not, see <https://www.gnu.org/licenses/>.
// =====================================================================================================================
#ifndef FENNEC_TEST_LANGPROC_STRINGS_CSTRING_H
#define FENNEC_TEST_LANGPROC_STRINGS_CSTRING_H
#ifndef FENNEC_TEST_STRING_CSTRING_H
#define FENNEC_TEST_STRING_CSTRING_H
#include "../../test.h"
@@ -26,7 +26,7 @@
namespace fennec::test
{
inline void fennec_test_langproc_strings_cstring()
inline void fennec_test_STRING_cstring()
{
static char test_string[] = "Hello World!";
static const char test_string_const[] = "Hello World!";
@@ -49,4 +49,4 @@ namespace fennec::test
}
#endif // FENNEC_TEST_LANGPROC_STRINGS_CSTRING_H
#endif // FENNEC_TEST_STRING_CSTRING_H

View File

@@ -28,8 +28,8 @@
///
///
#ifndef FENNEC_TEST_LANGPROC_STRINGS_STRING_H
#define FENNEC_TEST_LANGPROC_STRINGS_STRING_H
#ifndef FENNEC_TEST_STRING_STRING_H
#define FENNEC_TEST_STRING_STRING_H
#include <fennec/string/string.h>
@@ -38,7 +38,7 @@
namespace fennec::test
{
inline void fennec_test_langproc_strings_string() {
inline void fennec_test_STRING_string() {
string test0 = string("test0");
string test1 = string("test1");
@@ -54,4 +54,4 @@ inline void fennec_test_langproc_strings_string() {
}
#endif // FENNEC_TEST_LANGPROC_STRINGS_STRING_H
#endif // FENNEC_TEST_STRING_STRING_H

View File

@@ -16,8 +16,8 @@
// along with this program. If not, see <https://www.gnu.org/licenses/>.
// =====================================================================================================================
#ifndef FENNEC_TEST_LANGPROC_IO_H
#define FENNEC_TEST_LANGPROC_IO_H
#ifndef FENNEC_TEST_FILESYSTEM_H
#define FENNEC_TEST_FILESYSTEM_H
#include "../test.h"
@@ -89,4 +89,4 @@ namespace fennec::test
}
#endif // FENNEC_TEST_LANGPROC_IO_H
#endif // FENNEC_TEST_FILESYSTEM_H

View File

@@ -28,8 +28,8 @@
///
///
#ifndef FENNEC_TEST_LANGPROC_FORMAT_H
#define FENNEC_TEST_LANGPROC_FORMAT_H
#ifndef FENNEC_TEST_FORMAT_H
#define FENNEC_TEST_FORMAT_H
#include "../test.h"
#include <fennec/format/format.h>
@@ -80,4 +80,4 @@ inline void fennec_test_format() {
}
#endif // FENNEC_TEST_LANGPROC_FORMAT_H
#endif // FENNEC_TEST_FORMAT_H

View File

@@ -16,8 +16,8 @@
// along with this program. If not, see <https://www.gnu.org/licenses/>.
// =====================================================================================================================
#ifndef FENNEC_TEST_LANGPROC_STRINGS_H
#define FENNEC_TEST_LANGPROC_STRINGS_H
#ifndef FENNEC_TEST_STRING_H
#define FENNEC_TEST_STRING_H
#include "../test.h"
#include "./string/test_cstring.h"
@@ -30,13 +30,13 @@ namespace fennec::test
{
fennec_test_subheader("cstring");
fennec_test_spacer(2);
fennec_test_langproc_strings_cstring();
fennec_test_STRING_cstring();
fennec_test_spacer(3);
fennec_test_subheader("string");
fennec_test_spacer(2);
fennec_test_langproc_strings_string();
fennec_test_STRING_string();
fennec_test_spacer(3);
// TODO
@@ -44,4 +44,4 @@ namespace fennec::test
}
#endif // FENNEC_TEST_LANGPROC_STRINGS_H
#endif // FENNEC_TEST_STRING_H