Skip to content

Commit 13a9d47

Browse files
committed
toBranch
1 parent dcb5f22 commit 13a9d47

29 files changed

+184
-7
lines changed

.gitignore

100644100755
File mode changed.

CMakeLists.txt

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ include_directories(${CMAKE_SOURCE_DIR}/linux/include)
1818
link_directories(${CMAKE_SOURCE_DIR}/linux/lib)
1919

2020

21-
add_executable(gopher main.c general/lib/utils/utils.c general/include/utils.h)
21+
add_executable(gopher main.c general/lib/utils/utils.c general/include/utils.h general/lib/io/config_file.c general/include/config_file.h linux/lib/io/gopher_server_configuration_linux.c linux/include/gopher_server_configuration_linux.h linux/lib/utils/utils.c linux/include/utils.h general/lib/portable/portables.c general/include/portables.h)

general/.gitkeep

Whitespace-only changes.

general/include/.gitkeep

Whitespace-only changes.

general/include/config_file.h

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
//
2+
// Created by andreabacciu on 6/6/19.
3+
//
4+
5+
#ifndef PROJECT_CONFIG_FILE_H
6+
#define PROJECT_CONFIG_FILE_H
7+
8+
#endif //PROJECT_CONFIG_FILE_H

general/include/portables.h

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
//
2+
// Created by valerioneri on 6/6/19.
3+
//
4+
5+
#ifndef GOPHER_PORTABLES_H
6+
#define GOPHER_PORTABLES_H
7+
8+
#endif //GOPHER_PORTABLES_H
9+
10+
11+
int po_cd(char* path);

general/include/utils.h

100644100755
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,9 @@
88
void print(int i);
99
int mul(int a);
1010
int mul2(int a, int b);
11-
11+
int utParseConfigurationFile(char *path);
1212
#endif //GOPHER_UTILS_H
13+
14+
15+
16+

general/keep.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
for D in `find . -type d`
2+
do
3+
touch ${D}/.gitkeep
4+
done

general/lib/.gitkeep

Whitespace-only changes.

general/lib/gopher/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)