We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1d1794 commit 7af1611Copy full SHA for 7af1611
libs/utilities.c
@@ -1,3 +1,8 @@
1
+#include <stdio.h>
2
+
3
4
5
6
7
int getStrLength(char* str) {
8
int length = 0;
@@ -9,3 +14,9 @@ int getStrLength(char* str) {
9
14
10
15
return length;
11
16
}
17
18
+void sayhi(){
19
20
+printf("hello guys");
21
22
+}
libs/utilities.h
@@ -17,4 +17,6 @@
*/
int getStrLength(char* str);
+void sayhi();
#endif // UTILITIES_H_INCLUDED
0 commit comments