File tree 10 files changed +60
-0
lines changed
10 files changed +60
-0
lines changed Original file line number Diff line number Diff line change
1
+ *
2
+ ! .gitignore
Original file line number Diff line number Diff line change
1
+ *
2
+ ! .gitignore
Original file line number Diff line number Diff line change
1
+ #ifndef SU_h
2
+ #define SU_h value
3
+
4
+ void SU_init ();
5
+
6
+ #endif
Original file line number Diff line number Diff line change
1
+ #ifndef SU_eth_h
2
+ #define SU_eth_h value
3
+
4
+ void SU_etc_fun ();
5
+
6
+ #endif
Original file line number Diff line number Diff line change
1
+ #ifndef SU_math_h
2
+ #define SU_math_h
3
+
4
+ void SU_math_fun ();
5
+
6
+ #endif
Original file line number Diff line number Diff line change
1
+ *
2
+ ! .gitignore
Original file line number Diff line number Diff line change
1
+ #include " SU/SU.h"
2
+ #include " SU/SU_math.h"
3
+ #include < iostream>
4
+
5
+ void SU_init ()
6
+ {
7
+ SU_math_fun ();
8
+ std::cout << " SU inited" << std::endl;
9
+ }
Original file line number Diff line number Diff line change
1
+ #include " SU/SU_etc.h"
2
+ #include < iostream>
3
+
4
+ void SU_etc_fun ()
5
+ {
6
+ std::cout << " SU_etc function" << std::endl;
7
+ }
Original file line number Diff line number Diff line change
1
+ #include " SU/SU_math.h"
2
+ #include " SU/SU_etc.h"
3
+ #include < iostream>
4
+
5
+ void SU_math_fun ()
6
+ {
7
+ SU_etc_fun ();
8
+ std::cout << " SU_math function" << std::endl;
9
+ }
Original file line number Diff line number Diff line change
1
+ #include < iostream>
2
+ #include " SU/SU.h"
3
+
4
+ int main (int argc, char * argv[])
5
+ {
6
+ SU_init ();
7
+
8
+ std::cout << " ko" ;
9
+
10
+ return 0 ;
11
+ }
You can’t perform that action at this time.
0 commit comments