aboutsummaryrefslogtreecommitdiffstats
path: root/epan/g_ascii_strcasecmp.h
blob: 05621735a7eb781b56427e64c0165821ed24ab63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * $Id$
 *
 * "g_ascii_strcasecmp()" and "g_ascii_strncasecmp()" extracted from
 * GLib 2.4.8, for use with GLibs that don't have it (e.g., GLib 1.2[.x]).
 */

#ifndef __WIRESHARK_G_ASCII_STRCASECMP_H__
#define __WIRESHARK_G_ASCII_STRCASECMP_H__

extern gint g_ascii_strcasecmp (const gchar *s1,
				const gchar *s2);

extern gint g_ascii_strncasecmp (const gchar *s1,
				 const gchar *s2,
				 gsize n);

#endif