The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
/*

  (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 */