FACT++  1.0
string Readline::StaticPrompt ( const std::string &  prompt)
static

Just calls readline and thus allows to just prompt for something. Adds everything to the history except '.q'

Parameters
promptPrompt to be displayed
Returns
String entered by the user ('.q' is Ctrl-d is pressed)

Definition at line 1346 of file Readline.cc.

References Memory::free(), str, and Tools::Trim().

Referenced by Instance().

1347 {
1348  char *buf = readline(prompt.c_str());
1349  if (!buf)
1350  return ".q";
1351 
1352  const string str(buf);
1353  if (Tools::Trim(str)!=".q" && !Tools::Trim(str).empty())
1354  if (history_length==0 || history_search_pos(str.c_str(), -1, history_length-1)!=history_length-1)
1355  add_history(buf);
1356 
1357  free(buf);
1358 
1359  return str;
1360 }
char str[80]
Definition: test_client.c:7
void free(void *mem)
std::string Trim(const std::string &str)
Definition: tools.cc:68

+ Here is the call graph for this function:

+ Here is the caller graph for this function: