blob: a4686e36df2d7ab81bab40159951a7d5121e66f5 (
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_ */
|