2016-02-29 20:49:36 -08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
struct flow;
|
|
|
|
|
|
2016-03-08 11:26:39 -08:00
|
|
|
void file_opts_add(void);
|
|
|
|
|
void file_init(void);
|
2016-03-02 18:49:25 -08:00
|
|
|
void file_cleanup(void);
|
2016-03-07 11:26:25 -08:00
|
|
|
void file_read_new(const char *, struct flow *, void *);
|
|
|
|
|
void file_write_new(const char *, struct flow *, void *);
|
|
|
|
|
void file_append_new(const char *, struct flow *, void *);
|