FACT++  1.0
char * Readline::Compare ( const std::string &  str,
const std::string &  txt 
)
static

This is a static helper for the compilation of a completion-list. It compares the two inputs (str and txt) to a maximum of the size of txt. If they match, memory is allocated with malloc and a pointer to the null-terminated version of str is returned.

Parameters
strA reference to the string which is checked (e.g. "Makefile.am")
txtA reference to the part of the string the user has already typed, e.g. "Makef"
Returns
A pointer to memory allocated with malloc containing the string str

Definition at line 409 of file Readline.cc.

Referenced by Complete(), and GetLine().

410 {
411  /*return strncmp(str.c_str(), txt.c_str(), txt.length())==0 ? */
412  return strncasecmp(str.c_str(), txt.c_str(), txt.length())==0 ?
413  strndup(str.c_str(), str.length()) : 0;
414 }
char str[80]
Definition: test_client.c:7

+ Here is the caller graph for this function: