From a4270020addc324fb60d2b1b446b41bc31e3baf8 Mon Sep 17 00:00:00 2001 From: Lucas Castro Date: Wed, 10 Jan 2024 22:33:44 -0300 Subject: Import Upstream version 1.0.4 --- icmp_t.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 icmp_t.h (limited to 'icmp_t.h') 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 + +*/ + +#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 */ -- cgit v1.2.3