c-preprocessor/include/expand_line.h

12 lines
245 B
C

#ifndef _expand_line_h
#define _expand_line_h
#include "pp_defines.h"
#include "hashmap.h"
#include <stdio.h>
extern int write_expanded_line(void *def_map, char *line, FILE*);
extern char *get_expanded_line(void *def_map, char *line);
#endif