aboutsummaryrefslogtreecommitdiff
path: root/icmp_t.h
diff options
context:
space:
mode:
authorLucas Castro <lucas@gnuabordo.com.br>2024-01-10 22:33:44 -0300
committerLucas Castro <lucas@gnuabordo.com.br>2024-01-10 22:33:44 -0300
commita4270020addc324fb60d2b1b446b41bc31e3baf8 (patch)
tree8708f08c66a63f08c0cd88ab1a46faadcd3f4706 /icmp_t.h
Import Upstream version 1.0.4upstream/1.0.4
Diffstat (limited to 'icmp_t.h')
-rw-r--r--icmp_t.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/icmp_t.h b/icmp_t.h
new file mode 100644
index 0000000..59266d7
--- /dev/null
+++ b/icmp_t.h
@@ -0,0 +1,22 @@
+/*
+
+ (C) 2009 Mika Ilmaranta <ilmis@nullnet.fi>
+
+*/
+
+#ifndef __ICMP_T_H__
+#define __ICMP_T_H__
+
+struct icmpmsg
+{
+ int type;
+ int code;
+ char *type_msg;
+ char *code_msg;
+};
+
+struct icmpmsg *stricmp(int type, int code);
+
+#endif
+
+/* EOF */