mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
14 lines
269 B
C
14 lines
269 B
C
|
|
#ifndef EL__VIEWER_TEXT_MARKS_H
|
|
#define EL__VIEWER_TEXT_MARKS_H
|
|
|
|
struct module;
|
|
struct view_state;
|
|
|
|
void goto_mark(unsigned char mark, struct view_state *vs);
|
|
void set_mark(unsigned char mark, struct view_state *vs);
|
|
|
|
extern struct module viewer_marks_module;
|
|
|
|
#endif
|