Update testing headers to user relative includes

This commit is contained in:
Abdelrahman Said 2025-02-24 07:24:26 +00:00
parent ce4957d0a0
commit 9e66bd60bd
3 changed files with 9 additions and 9 deletions

View File

@ -1,7 +1,7 @@
#include "tester.h" #include "tester.h"
#include "aliases.h" #include "../../common/aliases/aliases.h"
#include "termcolour.h" #include "../../core/os/shell/termcolour/termcolour.h"
#include "str8.h" #include "../../core/strings/str8/str8.h"
#include <stdarg.h> #include <stdarg.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>

View File

@ -1,9 +1,9 @@
#ifndef TESTER_H #ifndef TESTER_H
#define TESTER_H #define TESTER_H
#include "misc_utils.h" #include "../../common/misc/misc_utils.h"
#include "platform.h" #include "../../common/platform/platform.h"
#include "str8.h" #include "../../core/strings/str8/str8.h"
#include <stdbool.h> #include <stdbool.h>
#ifdef __cplusplus #ifdef __cplusplus

View File

@ -1,8 +1,8 @@
#ifndef WAPP_TESTING_H #ifndef WAPP_TESTING_H
#define WAPP_TESTING_H #define WAPP_TESTING_H
#include "tester.h" #include "tester/tester.h"
#include "wapp_common.h" #include "../common/wapp_common.h"
#include "wapp_core.h" #include "../core/wapp_core.h"
#endif // !WAPP_TESTING_H #endif // !WAPP_TESTING_H