c-repl/src/include/input.h

13 lines
165 B
C
Raw Normal View History

2023-10-27 14:09:25 +02:00
#ifndef DEF_INPUT_H
#define DEF_INPUT_H
2023-11-10 17:35:33 +01:00
#include <string>
#include <vector>
2023-11-10 17:35:33 +01:00
using namespace std;
/*
Retrieves user input
*/
vector<string> get_input();
2023-10-27 14:09:25 +02:00
#endif