myshell 2.0.0
Loading...
Searching...
No Matches
msh_variable.h
1//
2// Created by andrew on 10/9/23.
3//
4
5#ifndef MYSHELL_MSH_VARIABLE_H
6#define MYSHELL_MSH_VARIABLE_H
7
8#include <string>
9
13struct variable {
14 std::string name;
15 std::string value;
16};
17
18#endif //MYSHELL_MSH_VARIABLE_H
Internal variable structure.
Definition msh_variable.h:13