Livl Shell  0.1
Livl Shell is an intermediate reimplementation of the bash shell in C language.
operator.h
Go to the documentation of this file.
1 
7 #ifndef OPERATOR_H
8 #define OPERATOR_H
9 
10 #include <string.h>
11 #include "typedef.h"
12 
18 OperatorType get_operator_type(const char *operator_str);
19 
25 const char *get_operator_string(OperatorType operator_type);
26 
27 #endif // OPERATOR_H
OperatorType
OperatorType
Definition: typedef.h:17
get_operator_type
OperatorType get_operator_type(const char *operator_str)
Gets the type of the given operator.
Definition: operator.c:6
typedef.h
File containing all the typedefs used in the shell program.
get_operator_string
const char * get_operator_string(OperatorType operator_type)
Gets the string corresponding to the given operator.
Definition: operator.c:66