17 lines
196 B
C
17 lines
196 B
C
#ifndef __TEST_MODE_H__
|
|
#define __TEST_MODE_H__
|
|
|
|
// Includes:
|
|
|
|
#include <stdbool.h>
|
|
|
|
// Functions:
|
|
|
|
void TestSwitches_Activate(void);
|
|
|
|
// Variables:
|
|
|
|
extern bool TestSwitches;
|
|
|
|
#endif
|