Skip to content

Commit

Permalink
Merge pull request #35 from ThundeRatz/hotfix/test_include_guard
Browse files Browse the repository at this point in the history
🩹 Add include guard on test core header
  • Loading branch information
LucasHaug authored Apr 3, 2023
2 parents 4770945 + 3a179ec commit e8602f9
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
11 changes: 8 additions & 3 deletions tests/inc/tests_core.h → tests/inc/test_core.h
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__
6 changes: 3 additions & 3 deletions tests/src/tests_core.c → tests/src/test_core.c
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
/**
* @file tests_core.c
* @file test_core.c
*
* @brief Core functions to the tests
* @brief Core functions to the test
*
* @date 04/2021
*
* @copyright MIT License
*
*/

#include "tests_core.h"
#include "test_core.h"
#include "mcu.h"

/*****************************************
Expand Down

0 comments on commit e8602f9

Please sign in to comment.