c-repl/src/include/input.h

12 lines
139 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>
using namespace std;
/*
Retrieves user input
*/
2023-10-27 14:09:25 +02:00
string get_input();
#endif