Skip to content

Commit

Permalink
line-range.h: drop extern from function declaration
Browse files Browse the repository at this point in the history
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
pclouds authored and gitster committed Aug 3, 2018
1 parent f758a7f commit 5146f1f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions line-range.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@

typedef const char *(*nth_line_fn_t)(void *data, long lno);

extern int parse_range_arg(const char *arg,
nth_line_fn_t nth_line_cb,
void *cb_data, long lines, long anchor,
long *begin, long *end,
const char *path);
int parse_range_arg(const char *arg,
nth_line_fn_t nth_line_cb,
void *cb_data, long lines, long anchor,
long *begin, long *end,
const char *path);

/*
* Scan past a range argument that could be parsed by
Expand All @@ -34,6 +34,6 @@ extern int parse_range_arg(const char *arg,
* NULL in case the argument is obviously malformed.
*/

extern const char *skip_range_arg(const char *arg);
const char *skip_range_arg(const char *arg);

#endif /* LINE_RANGE_H */

0 comments on commit 5146f1f

Please sign in to comment.