Enable FT_BYTES dfiltering, from Ed Warnicke.
[obnox/wireshark/wip.git] / epan / strutil.h
1 /* strutil.h
2  * String utility definitions
3  *
4  * $Id: strutil.h,v 1.6 2000/12/22 12:05:36 gram Exp $
5  *
6  * Ethereal - Network traffic analyzer
7  * By Gerald Combs <gerald@zing.org>
8  * Copyright 1998 Gerald Combs
9  *
10  * 
11  * This program is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU General Public License
13  * as published by the Free Software Foundation; either version 2
14  * of the License, or (at your option) any later version.
15  * 
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  * 
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
24  */
25
26 #ifndef __STRUTIL_H__
27 #define __STRUTIL_H__
28
29 /* ... thus, config.h needs to be #included */
30
31 #ifdef HAVE_SYS_TYPES_H
32 #include <sys/types.h>  /* for u_char */
33 #endif
34
35 #ifdef HAVE_WINSOCK_H
36 # include <winsock.h>   /* for u_char */
37 #endif
38
39 const u_char *find_line_end(const u_char *data, const u_char *dataend,
40     const u_char **eol);
41 int        get_token_len(const u_char *linep, const u_char *lineend,
42     const u_char **next_token);
43 gchar*     format_text(const u_char *line, int len);
44 gchar*     bytes_to_str(const guint8 *, int);
45 gchar*     bytes_to_str_punct(const guint8 *, int, gchar punct);
46 #endif /* __STRUTIL_H__ */