Code Propagation

- Took a patch to tw from the clog version of Nibbler.
This commit is contained in:
Paul Beckingham 2012-04-14 17:02:04 -04:00
parent 0288fd1ec9
commit d6d9fbd8e7
2 changed files with 10 additions and 0 deletions

View file

@ -1175,6 +1175,14 @@ bool Nibbler::skipRx (const std::string& regex)
}
#endif
////////////////////////////////////////////////////////////////////////////////
void Nibbler::getRemainder (std::string& result)
{
if (_cursor < _length)
result = _input.substr (_cursor);
}
////////////////////////////////////////////////////////////////////////////////
bool Nibbler::skipAllOneOf (const std::string& chars)
{

View file

@ -93,6 +93,8 @@ public:
bool skipRx (const std::string&);
#endif
void getRemainder (std::string&);
char next ();
std::string next (const int quantity);