Small fix for heuristic: it missed a tapa packet
[obnox/wireshark/wip.git] / epan / g_ascii_strcasecmp.h
1 /*
2  * $Id$
3  *
4  * "g_ascii_strcasecmp()" and "g_ascii_strncasecmp()" extracted from
5  * GLib 2.4.8, for use with GLibs that don't have it (e.g., GLib 1.2[.x]).
6  */
7
8 #ifndef __WIRESHARK_G_ASCII_STRCASECMP_H__
9 #define __WIRESHARK_G_ASCII_STRCASECMP_H__
10
11 extern gint g_ascii_strcasecmp (const gchar *s1,
12                                 const gchar *s2);
13
14 extern gint g_ascii_strncasecmp (const gchar *s1,
15                                  const gchar *s2,
16                                  gsize n);
17
18 #endif