--- /dev/null
+#ifndef GREETER_LIB_C
+#define GREETER_LIB_C
+#ifndef FACE
+ #define GREETER_IMPL
+#endif
+
+#define FACE
+#include "math.lib.c"
+#undef FACE
+
+void Greet·hello_loop(int count);
+
+#ifdef GREETER_IMPL
+
+#include <stdio.h>
+
+void Greet·hello_loop(int count){
+ for(int TM = 0; TM < count; ++TM){
+ int current_count = Math·add(TM ,1);
+ printf("Hello iteration: %d\n" ,current_count);
+ }
+}
+
+#endif // GREETER_IMPL
+#endif // GREETER_LIB_C
+
--- /dev/null
+#ifndef ExampleGreet·math·ONCE
+#define ExampleGreet·math·ONCE
+
+#ifndef ExampleGreet·math
+ #define ExampleGreet·math
+#endif
+
+int ExampleGreet·Math·add(int a ,int b);
+
+#ifdef ExampleGreet·math
+
+int ExampleGreet·Math·add(int a ,int b){
+ return a + b;
+}
+
+#endif // ExampleGreet·math
+#endif // ExampleGreet·math·ONCE
--- /dev/null
+#include <stdlib.h>
+#include <stdio.h>
+
+#define FACE
+#include "math.lib.c"
+#include "greeter.lib.c"
+#undef FACE
+
+void CLI(void){
+ int base_count = Math·add(1 ,2);
+ printf("Calculated base loop count: %d\n" ,base_count);
+ Greet·hello_loop(base_count);
+}
+
+int main(int argc ,char **argv){
+ (void)argc;
+ (void)argv;
+
+ CLI();
+
+ return EXIT_SUCCESS;
+}
+++ /dev/null
-#ifndef GREETER_LIB_C
-#define GREETER_LIB_C
-#ifndef FACE
- #define GREETER_IMPL
-#endif
-
-#define FACE
-#include "math.lib.c"
-#undef FACE
-
-void Greet·hello_loop(int count);
-
-#ifdef GREETER_IMPL
-
-#include <stdio.h>
-
-void Greet·hello_loop(int count){
- for(int TM = 0; TM < count; ++TM){
- int current_count = Math·add(TM ,1);
- printf("Hello iteration: %d\n" ,current_count);
- }
-}
-
-#endif // GREETER_IMPL
-#endif // GREETER_LIB_C
-
+++ /dev/null
-#include <stdlib.h>
-#include <stdio.h>
-
-#define FACE
-#include "math.lib.c"
-#include "greeter.lib.c"
-#undef FACE
-
-void CLI(void){
- int base_count = Math·add(1 ,2);
- printf("Calculated base loop count: %d\n" ,base_count);
- Greet·hello_loop(base_count);
-}
-
-int main(int argc ,char **argv){
- (void)argc;
- (void)argv;
-
- CLI();
-
- return EXIT_SUCCESS;
-}
+++ /dev/null
-#ifndef MATH_LIB_C
-#define MATH_LIB_C
-
-#ifndef FACE
- #define MATH_IMPL
-#endif
-
-int Math·add(int a ,int b);
-
-#ifdef MATH_IMPL
-
-int Math·add(int a ,int b){
- return a + b;
-}
-
-#endif // MATH_IMPL
-#endif // MATH_LIB_C