added moveBackToLineStart() method on ZString.
This commit is contained in:
parent
ab4da04de6
commit
2de5693e87
@ -584,5 +584,13 @@ namespace coreutils {
|
|||||||
return line;
|
return line;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void ZString::moveBackToLineStart() {
|
||||||
|
while(cursor != data) {
|
||||||
|
if(*cursor == '\n')
|
||||||
|
break;
|
||||||
|
cursor--;
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -446,6 +446,13 @@ namespace coreutils {
|
|||||||
|
|
||||||
int getLineNumberAtCursor();
|
int getLineNumberAtCursor();
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Move the cursor to the beginning of a line or to the beginning of
|
||||||
|
/// the ZString.
|
||||||
|
///
|
||||||
|
|
||||||
|
void moveBackToLineStart();
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
char *data;
|
char *data;
|
||||||
char *cursor;
|
char *cursor;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user