Starting point for the exercise in the IoT workshop
main.cpp
- Committer:
- marcozecchini
- Date:
- 2019-02-26
- Revision:
- 0:66a70b507959
File content as of revision 0:66a70b507959:
#include "main.h"
/*
* Auxiliary functions
*/
string readline_questions(){
size_t pos = questions.find("!");
string buffer = questions.substr(0, pos);
read_questions += buffer;
questions = questions.substr(pos+1);
return buffer.substr(0, buffer.length()-1);
}
/*
* Main function
*/
int main()
{
}