Skip to content

Commit 845857f

Browse files
committed
src dir
1 parent fa3ad12 commit 845857f

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed
File renamed without changes.

utils/util.c renamed to src/utils/util.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ void *mmalloc(size_t size) {
99
return p;
1010
}
1111

12-
str String(char *s) {
12+
str string(char *s) {
1313
str p = mmalloc(strlen(s)+1);
1414
strcpy(p,s);
1515
return p;

utils/util.h renamed to src/utils/util.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
typedef char *str;
99

1010
void *mmalloc(size_t size);
11-
str String(char *str);
11+
str string(char *str);

0 commit comments

Comments
 (0)