frontend/inpcom.c, declare search_identifier() non static

This commit is contained in:
rlar 2016-08-14 13:40:39 +02:00
parent c0d5d054ab
commit 00e571dc00
2 changed files with 2 additions and 1 deletions

View File

@ -4063,7 +4063,7 @@ b_transformation_wanted(const char *p)
}
static char *
char *
search_identifier(char *str, const char *identifier, char *str_begin)
{
while ((str = strstr(str, identifier)) != NULL) {

View File

@ -213,6 +213,7 @@ extern void inp_casefix(char *string);
extern void inp_list(FILE *file, struct line *deck, struct line *extras, int type);
extern struct line *inp_readall(FILE *fp, char *dir_name, bool comfile, bool intfile);
extern FILE *inp_pathopen(char *name, char *mode);
extern char *search_identifier(char *str, const char *identifier, char *str_begin);
extern char** circarray;