Clean up a bit, and put "extern" back.

svn path=/trunk/; revision=6768
This commit is contained in:
Guy Harris 2002-12-08 22:53:00 +00:00
parent 22496138e9
commit ad323ca96f
1 changed files with 8 additions and 9 deletions

View File

@ -1,7 +1,7 @@
/* to_str.h
* Definitions for utilities to convert various other types to strings.
*
* $Id: to_str.h,v 1.10 2002/12/08 02:32:36 gerald Exp $
* $Id: to_str.h,v 1.11 2002/12/08 22:53:00 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -43,16 +43,15 @@ typedef enum {
* but for which no more specific module applies.
*/
gchar* ether_to_str(const guint8 *);
gchar* ether_to_str_punct(const guint8 *, char, guint32);
gchar* ip_to_str(const guint8 *);
void ip_to_str_buf(const guint8 *, gchar *);
struct e_in6_addr;
gchar* fc_to_str(const guint8 *);
gchar* fc_to_str_buf(const guint8 *);
gchar* fcwwn_to_str (const guint8 *);
extern gchar* ether_to_str(const guint8 *);
extern gchar* ether_to_str_punct(const guint8 *, char, guint32);
extern gchar* ip_to_str(const guint8 *);
extern void ip_to_str_buf(const guint8 *, gchar *);
extern gchar* fc_to_str(const guint8 *);
extern gchar* fc_to_str_buf(const guint8 *);
extern gchar* fcwwn_to_str (const guint8 *);
extern char* ip6_to_str(const struct e_in6_addr *);
extern gchar* ipx_addr_to_str(guint32, const guint8 *);
extern gchar* ipxnet_to_string(const guint8 *ad);