blob: b38c0bc864d30173445380ba45564ba1b1b8eceb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef _OUTPUT_H_
#define _OUTPUT_H_
#include <stdlib.h>
#include <stdio.h>
#include "symlist.h"
#define DEFAULT_RULES_FILE "rules"
#define DEFAULT_SYMBOL_MAP_FILE "symbol_map"
void fprint_rules(struct symlist *sl, char *output);
void fprint_symbol_map(struct symlist *sl, char *output);
#endif /* _OUTPUT_H_ */
|