Updated project structure and makefile. Started creating frontend. Created csv database interphase
This commit is contained in:
5
include/utils_op/arr.h
Normal file
5
include/utils_op/arr.h
Normal 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
0
include/utils_op/llist.h
Normal file
9
include/utils_op/utils.h
Normal file
9
include/utils_op/utils.h
Normal 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);
|
Reference in New Issue
Block a user