#include "mystring.h"
#include <ctype.h>

mystring mystring::lstrip() const
{
  const char* ptr = rep->buf;
  while(*ptr && isspace(*ptr))
    ++ptr;
  return ptr;
}


syntax highlighted by Code2HTML, v. 0.9.1