-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35 from ThundeRatz/hotfix/test_include_guard
🩹 Add include guard on test core header
- Loading branch information
Showing
2 changed files
with
11 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,25 @@ | ||
/** | ||
* @file tests_core.h | ||
* @file test_core.h | ||
* | ||
* @brief Core functions to the tests | ||
* @brief Core functions to the test | ||
* | ||
* @date 04/2021 | ||
* | ||
* @copyright MIT License | ||
* | ||
*/ | ||
|
||
#ifndef __TEST_CORE_H__ | ||
#define __TEST_CORE_H__ | ||
|
||
/***************************************** | ||
* Public Functions Prototypes | ||
*****************************************/ | ||
|
||
/** | ||
* @brief Initialize tests core | ||
* @brief Initialize test core | ||
* | ||
*/ | ||
void test_core_init(void); | ||
|
||
#endif // __TEST_CORE_H__ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters