Starting point for the exercise in the IoT workshop

main.cpp

Committer:
marcozecchini
Date:
2019-02-26
Revision:
1:d61cfd0e12a2
Parent:
0:66a70b507959

File content as of revision 1:d61cfd0e12a2:

#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()
{

}