diff options
Diffstat (limited to 'src/ls_goto.h')
-rw-r--r-- | src/ls_goto.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ls_goto.h b/src/ls_goto.h index 412123e..39ff271 100644 --- a/src/ls_goto.h +++ b/src/ls_goto.h @@ -23,16 +23,16 @@ /// Go to a numbered label. /// -/// @param ctx - context +/// @param self /// @param backward - whether to look backwards for the label (otherwise /// forwards) /// @param num - number to go to -void ls_goto_num(ls_context_t * ctx, bool backward, uint16_t num); +void ls_goto_num(ls_t * self, bool backward, uint16_t num); /// Go to an ident (string) label. /// -/// @param ctx - context +/// @param self /// @param ident - ident to go to -void ls_goto_ident(ls_context_t * ctx, char const * ident); +void ls_goto_ident(ls_t * self, char const * ident); #endif // !defined(LS_GOTO_H) |