aboutsummaryrefslogtreecommitdiffstats
path: root/epan/inet_aton.h
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>2000-10-14 04:31:26 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>2000-10-14 04:31:26 +0000
commit26bda31ed9c162e91dae0b1aea535d1e112fda14 (patch)
tree26ff2fe56461b07db58cccbdf4d5bb4531785528 /epan/inet_aton.h
parentb3f64359bb1fb553fd3a4944a45b1615d889dd66 (diff)
downloadwireshark-26bda31ed9c162e91dae0b1aea535d1e112fda14.tar.gz
wireshark-26bda31ed9c162e91dae0b1aea535d1e112fda14.tar.bz2
wireshark-26bda31ed9c162e91dae0b1aea535d1e112fda14.zip
Move inet_*.[ch] files to epan.
svn path=/trunk/; revision=2494
Diffstat (limited to 'epan/inet_aton.h')
-rw-r--r--epan/inet_aton.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/epan/inet_aton.h b/epan/inet_aton.h
new file mode 100644
index 0000000000..40fa26c1af
--- /dev/null
+++ b/epan/inet_aton.h
@@ -0,0 +1,34 @@
+/* inet_aton.h
+ *
+ * $Id: inet_aton.h,v 1.1 2000/10/14 04:31:26 gram Exp $
+ *
+ * Ethereal - Network traffic analyzer
+ * By Gerald Combs <gerald@zing.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+/*
+ * Version of "inet_aton()", for the benefit of OSes that don't have it.
+ */
+
+#ifndef __INET_ATON_H__
+#define __INET_ATON_H__
+
+struct in_addr;
+extern int inet_aton(const char* cp_arg, struct in_addr *addr);
+
+#endif