Coding style modifications

This commit is contained in:
Lucian Popescu 2021-03-24 21:19:17 +02:00
parent e7268771e6
commit 93bde8d6f0
2 changed files with 4 additions and 3 deletions

View File

@ -5,7 +5,7 @@
#include "hashmap.h"
#include <stdio.h>
extern int write_expanded_line(void *def_map, char *line, FILE *source);
extern int write_expanded_line(void *def_map, char *line, FILE *);
extern char *get_expanded_line(void *def_map, char *line);
#endif

View File

@ -3,6 +3,9 @@
#include <stdio.h>
#define SKIP_UNTIL_CURR_BRANCH_END 1
#define SKIP_UNTIL_ENDIF_LINE 2
extern int write_line_to_file(FILE *out, char *line);
extern char *l_strdup(char *str);
@ -14,8 +17,6 @@ extern char *skip_word(char *s);
extern int is_cond_null(char *cond_line);
#define SKIP_UNTIL_CURR_BRANCH_END 1
#define SKIP_UNTIL_ENDIF_LINE 2
extern int skip_until(FILE *f, int until);
#endif