Some UN*Xes don't have any "strtou*" routine to convert a string to a
[obnox/wireshark/wip.git] / epan / g_ascii_strtoull.h
1 /*
2  * $Id$
3  *
4  * "g_ascii_strtoull()" extracted from GLib 2.4.5, for use with GLibs
5  * that don't have it (e.g., GLib 1.2[.x]).
6  */
7
8 #ifndef __ETHEREAL_G_ASCII_STRTOULL_H__
9 #define __ETHEREAL_G_ASCII_STRTOULL_H__
10
11 extern guint64 g_ascii_strtoull (const gchar *nptr,
12                                  gchar      **endptr,
13                                  guint        base);
14
15 #endif