scaffolding for steps

This commit is contained in:
2024-08-02 17:18:06 -05:00
parent bd4548ec90
commit bb20c66b85
10 changed files with 146 additions and 14 deletions
+10
View File
@@ -0,0 +1,10 @@
#ifndef STEP_1_HPP
#define STEP_1_HPP
static const char *STEP1_TAG = "step1";
void step1(void) {
}
#endif /* STEP_1_HPP */
+10
View File
@@ -0,0 +1,10 @@
#ifndef STEP_2_HPP
#define STEP_2_HPP
static const char *STEP2_TAG = "step2";
void step2(void) {
}
#endif /* STEP_2_HPP */
+10
View File
@@ -0,0 +1,10 @@
#ifndef STEP_3_HPP
#define STEP_3_HPP
static const char *STEP3_TAG = "step3";
void step3(void) {
}
#endif /* STEP_3_HPP */
+10
View File
@@ -0,0 +1,10 @@
#ifndef STEP_4_HPP
#define STEP_4_HPP
static const char *STEP4_TAG = "step4";
void step4(void) {
}
#endif /* STEP_4_HPP */
+10
View File
@@ -0,0 +1,10 @@
#ifndef STEP_5_HPP
#define STEP_5_HPP
static const char *STEP5_TAG = "step5";
void step5(void) {
}
#endif /* STEP_5_HPP */
+10
View File
@@ -0,0 +1,10 @@
#ifndef STEP_6_HPP
#define STEP_6_HPP
static const char *STEP6_TAG = "step6";
void step6(void) {
}
#endif /* STEP_6_HPP */