mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
13 lines
235 B
C
13 lines
235 B
C
|
|
||
|
#ifndef EL__VIEWER_TEXT_MARKS_H
|
||
|
#define EL__VIEWER_TEXT_MARKS_H
|
||
|
|
||
|
struct view_state;
|
||
|
|
||
|
void goto_mark(unsigned char mark, struct view_state *vs);
|
||
|
void set_mark(unsigned char mark, struct view_state *vs);
|
||
|
|
||
|
void free_marks(void);
|
||
|
|
||
|
#endif
|