blob: 73098c048e9588e6c79aad5d014c4a3e9ea25c0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/** @file
*
* Definitions for generating PostScript(R) packet output.
*
* Gilbert Ramirez <gram@alumni.rice.edu>
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef __PS_H__
#define __PS_H__
/* Functions in ps.c; automatically generated by rdps.py */
void print_ps_preamble(FILE *);
void print_ps_finale(FILE *);
#endif /* ps.h */
|