class Buff { public: const char *base; char *curr; Buff(char *_base){ base = _base; curr = _base; } };