Livl Shell  0.1
Livl Shell is an intermediate reimplementation of the bash shell in C language.
utils.h
Go to the documentation of this file.
1 
8 #ifndef UTILS_H
9 #define UTILS_H
10 
11 #include <string.h>
12 #include <ctype.h>
13 
18 void handle_quotes(char *token);
19 
25 char *trim(char *str);
26 
27 #endif // UTILS_H
handle_quotes
void handle_quotes(char *token)
Handle quotes in a string (remove them)
Definition: utils.c:25
trim
char * trim(char *str)
Remove the spaces at the beginning and the end of a string.
Definition: utils.c:3