aboutsummaryrefslogtreecommitdiff
path: root/tags.c
diff options
context:
space:
mode:
Diffstat (limited to 'tags.c')
-rw-r--r--tags.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/tags.c b/tags.c
index 9a413b7ef2a1..fdc82da24e82 100644
--- a/tags.c
+++ b/tags.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 1984-2019 Mark Nudelman
+ * Copyright (C) 1984-2020 Mark Nudelman
*
* You may distribute under the terms of either the GNU General Public
* License or the Less License, as specified in the README file.
@@ -44,13 +44,14 @@ enum {
T_GPATH /* 'GPATH': path name (global) */
};
-static enum tag_result findctag();
-static enum tag_result findgtag();
-static char *nextgtag();
-static char *prevgtag();
-static POSITION ctagsearch();
-static POSITION gtagsearch();
-static int getentry();
+static enum tag_result findctag LESSPARAMS((char *tag));
+static enum tag_result findgtag LESSPARAMS((char *tag, int type));
+static char *nextgtag(VOID_PARAM);
+static char *prevgtag(VOID_PARAM);
+static POSITION ctagsearch(VOID_PARAM);
+static POSITION gtagsearch(VOID_PARAM);
+static int getentry LESSPARAMS((char *buf, char **tag, char **file,
+ char **line));
/*
* The list of tags generated by the last findgtag() call.