Updated project structure and makefile. Started creating frontend. Created csv database interphase

This commit is contained in:
2020-06-30 12:39:50 +05:00
parent 457a52a585
commit db9b46f041
28 changed files with 643 additions and 89 deletions

5
include/utils_op/arr.h Normal file
View File

@ -0,0 +1,5 @@
#include <string.h>
#include <stdlib.h>
void insert_to_arr(char ***arr, size_t length, char *value);
void free_arr(char **arr, int length);

0
include/utils_op/llist.h Normal file
View File

9
include/utils_op/utils.h Normal file
View File

@ -0,0 +1,9 @@
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <stdlib.h>
void err_msg(char *msg);
char *add_to_front(char **str1, char *str2);
char *get_status_message(int status_code);
char *to_lower(char *str);