Skip to content

Commit 7af1611

Browse files
tiagos first commit
1 parent b1d1794 commit 7af1611

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

libs/utilities.c

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
#include <stdio.h>
2+
3+
4+
5+
16

27
int getStrLength(char* str) {
38
int length = 0;
@@ -9,3 +14,9 @@ int getStrLength(char* str) {
914

1015
return length;
1116
}
17+
18+
void sayhi(){
19+
20+
printf("hello guys");
21+
22+
}

libs/utilities.h

+2
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,6 @@
1717
*/
1818
int getStrLength(char* str);
1919

20+
void sayhi();
21+
2022
#endif // UTILITIES_H_INCLUDED

0 commit comments

Comments
 (0)