diff options
Diffstat (limited to 'cfile.c')
-rw-r--r-- | cfile.c | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/cfile.c b/cfile.c new file mode 100644 index 00000000..fbc2b98d --- /dev/null +++ b/cfile.c @@ -0,0 +1,25 @@ +/* cfile.c + * capture_file GUI-independent manipulation + * Vassilii Khachaturov <vassilii@tarunz.org> + * + * Wireshark - Network traffic analyzer + * By Gerald Combs <gerald@wireshark.org> + * Copyright 1998 Gerald Combs + * + * SPDX-License-Identifier: GPL-2.0-or-later + */ + +#include <config.h> + +#include <glib.h> + +#include <epan/packet.h> + +#include "cfile.h" + +void +cap_file_init(capture_file *cf) +{ + /* Initialize the capture file struct */ + memset(cf, 0, sizeof(capture_file)); +} |