1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
19 * Modified by the GLib Team and others 1997-2000. See the AUTHORS
20 * file for a list of people on the GLib Team. See the ChangeLog
21 * files for a list of changes. These files are distributed with
22 * GLib at ftp://ftp.gtk.org/pub/gtk/.
38 #include <ctype.h> /* For tolower() */
41 /* Needed on BSD/OS X for e.g. strtod_l */
49 /* do not include <unistd.h> here, it may interfere with g_strsignal() */
51 #include "gstrfuncs.h"
54 #include "gprintfint.h"
59 * SECTION:string_utils
60 * @title: String Utility Functions
61 * @short_description: various string-related functions
63 * This section describes a number of utility functions for creating,
64 * duplicating, and manipulating strings.
66 * Note that the functions g_printf(), g_fprintf(), g_sprintf(),
67 * g_snprintf(), g_vprintf(), g_vfprintf(), g_vsprintf() and g_vsnprintf()
68 * are declared in the header `gprintf.h` which is not included in `glib.h`
69 * (otherwise using `glib.h` would drag in `stdio.h`), so you'll have to
70 * explicitly include `<glib/gprintf.h>` in order to use the GLib
73 * ## String precision pitfalls # {#string-precision}
75 * While you may use the printf() functions to format UTF-8 strings,
76 * notice that the precision of a \%Ns parameter is interpreted
77 * as the number of bytes, not characters to print. On top of that,
78 * the GNU libc implementation of the printf() functions has the
79 * "feature" that it checks that the string given for the \%Ns
80 * parameter consists of a whole number of characters in the current
81 * encoding. So, unless you are sure you are always going to be in an
82 * UTF-8 locale or your know your text is restricted to ASCII, avoid
83 * using \%Ns. If your intention is to format strings for a
84 * certain number of columns, then \%Ns is not a correct solution
85 * anyway, since it fails to take wide characters (see g_unichar_iswide())
93 * Determines whether a character is alphanumeric.
95 * Unlike the standard C library isalnum() function, this only
96 * recognizes standard ASCII letters and ignores the locale,
97 * returning %FALSE for all non-ASCII characters. Also, unlike
98 * the standard library function, this takes a char, not an int,
99 * so don't call it on %EOF, but no need to cast to #guchar before
100 * passing a possibly non-ASCII character in.
102 * Returns: %TRUE if @c is an ASCII alphanumeric character
109 * Determines whether a character is alphabetic (i.e. a letter).
111 * Unlike the standard C library isalpha() function, this only
112 * recognizes standard ASCII letters and ignores the locale,
113 * returning %FALSE for all non-ASCII characters. Also, unlike
114 * the standard library function, this takes a char, not an int,
115 * so don't call it on %EOF, but no need to cast to #guchar before
116 * passing a possibly non-ASCII character in.
118 * Returns: %TRUE if @c is an ASCII alphabetic character
125 * Determines whether a character is a control character.
127 * Unlike the standard C library iscntrl() function, this only
128 * recognizes standard ASCII control characters and ignores the
129 * locale, returning %FALSE for all non-ASCII characters. Also,
130 * unlike the standard library function, this takes a char, not
131 * an int, so don't call it on %EOF, but no need to cast to #guchar
132 * before passing a possibly non-ASCII character in.
134 * Returns: %TRUE if @c is an ASCII control character.
141 * Determines whether a character is digit (0-9).
143 * Unlike the standard C library isdigit() function, this takes
144 * a char, not an int, so don't call it on %EOF, but no need to
145 * cast to #guchar before passing a possibly non-ASCII character in.
147 * Returns: %TRUE if @c is an ASCII digit.
154 * Determines whether a character is a printing character and not a space.
156 * Unlike the standard C library isgraph() function, this only
157 * recognizes standard ASCII characters and ignores the locale,
158 * returning %FALSE for all non-ASCII characters. Also, unlike
159 * the standard library function, this takes a char, not an int,
160 * so don't call it on %EOF, but no need to cast to #guchar before
161 * passing a possibly non-ASCII character in.
163 * Returns: %TRUE if @c is an ASCII printing character other than space.
170 * Determines whether a character is an ASCII lower case letter.
172 * Unlike the standard C library islower() function, this only
173 * recognizes standard ASCII letters and ignores the locale,
174 * returning %FALSE for all non-ASCII characters. Also, unlike
175 * the standard library function, this takes a char, not an int,
176 * so don't call it on %EOF, but no need to worry about casting
177 * to #guchar before passing a possibly non-ASCII character in.
179 * Returns: %TRUE if @c is an ASCII lower case letter
186 * Determines whether a character is a printing character.
188 * Unlike the standard C library isprint() function, this only
189 * recognizes standard ASCII characters and ignores the locale,
190 * returning %FALSE for all non-ASCII characters. Also, unlike
191 * the standard library function, this takes a char, not an int,
192 * so don't call it on %EOF, but no need to cast to #guchar before
193 * passing a possibly non-ASCII character in.
195 * Returns: %TRUE if @c is an ASCII printing character.
202 * Determines whether a character is a punctuation character.
204 * Unlike the standard C library ispunct() function, this only
205 * recognizes standard ASCII letters and ignores the locale,
206 * returning %FALSE for all non-ASCII characters. Also, unlike
207 * the standard library function, this takes a char, not an int,
208 * so don't call it on %EOF, but no need to cast to #guchar before
209 * passing a possibly non-ASCII character in.
211 * Returns: %TRUE if @c is an ASCII punctuation character.
218 * Determines whether a character is a white-space character.
220 * Unlike the standard C library isspace() function, this only
221 * recognizes standard ASCII white-space and ignores the locale,
222 * returning %FALSE for all non-ASCII characters. Also, unlike
223 * the standard library function, this takes a char, not an int,
224 * so don't call it on %EOF, but no need to cast to #guchar before
225 * passing a possibly non-ASCII character in.
227 * Returns: %TRUE if @c is an ASCII white-space character
234 * Determines whether a character is an ASCII upper case letter.
236 * Unlike the standard C library isupper() function, this only
237 * recognizes standard ASCII letters and ignores the locale,
238 * returning %FALSE for all non-ASCII characters. Also, unlike
239 * the standard library function, this takes a char, not an int,
240 * so don't call it on %EOF, but no need to worry about casting
241 * to #guchar before passing a possibly non-ASCII character in.
243 * Returns: %TRUE if @c is an ASCII upper case letter
250 * Determines whether a character is a hexadecimal-digit character.
252 * Unlike the standard C library isxdigit() function, this takes
253 * a char, not an int, so don't call it on %EOF, but no need to
254 * cast to #guchar before passing a possibly non-ASCII character in.
256 * Returns: %TRUE if @c is an ASCII hexadecimal-digit character.
260 * G_ASCII_DTOSTR_BUF_SIZE:
262 * A good size for a buffer to be passed into g_ascii_dtostr().
263 * It is guaranteed to be enough for all output of that function
264 * on systems with 64bit IEEE-compatible doubles.
266 * The typical usage would be something like:
267 * |[<!-- language="C" -->
268 * char buf[G_ASCII_DTOSTR_BUF_SIZE];
270 * fprintf (out, "value=%s\n", g_ascii_dtostr (buf, sizeof (buf), value));
276 * @string: a string to remove the leading and trailing whitespace from
278 * Removes leading and trailing whitespace from a string.
279 * See g_strchomp() and g_strchug().
287 * The standard delimiters, used in g_strdelimit().
290 static const guint16 ascii_table_data[256] = {
291 0x004, 0x004, 0x004, 0x004, 0x004, 0x004, 0x004, 0x004,
292 0x004, 0x104, 0x104, 0x004, 0x104, 0x104, 0x004, 0x004,
293 0x004, 0x004, 0x004, 0x004, 0x004, 0x004, 0x004, 0x004,
294 0x004, 0x004, 0x004, 0x004, 0x004, 0x004, 0x004, 0x004,
295 0x140, 0x0d0, 0x0d0, 0x0d0, 0x0d0, 0x0d0, 0x0d0, 0x0d0,
296 0x0d0, 0x0d0, 0x0d0, 0x0d0, 0x0d0, 0x0d0, 0x0d0, 0x0d0,
297 0x459, 0x459, 0x459, 0x459, 0x459, 0x459, 0x459, 0x459,
298 0x459, 0x459, 0x0d0, 0x0d0, 0x0d0, 0x0d0, 0x0d0, 0x0d0,
299 0x0d0, 0x653, 0x653, 0x653, 0x653, 0x653, 0x653, 0x253,
300 0x253, 0x253, 0x253, 0x253, 0x253, 0x253, 0x253, 0x253,
301 0x253, 0x253, 0x253, 0x253, 0x253, 0x253, 0x253, 0x253,
302 0x253, 0x253, 0x253, 0x0d0, 0x0d0, 0x0d0, 0x0d0, 0x0d0,
303 0x0d0, 0x473, 0x473, 0x473, 0x473, 0x473, 0x473, 0x073,
304 0x073, 0x073, 0x073, 0x073, 0x073, 0x073, 0x073, 0x073,
305 0x073, 0x073, 0x073, 0x073, 0x073, 0x073, 0x073, 0x073,
306 0x073, 0x073, 0x073, 0x0d0, 0x0d0, 0x0d0, 0x0d0, 0x004
307 /* the upper 128 are all zeroes */
310 const guint16 * const g_ascii_table = ascii_table_data;
312 #if defined (HAVE_NEWLOCALE) && \
313 defined (HAVE_USELOCALE) && \
314 defined (HAVE_STRTOD_L) && \
315 defined (HAVE_STRTOULL_L) && \
316 defined (HAVE_STRTOLL_L)
317 #define USE_XLOCALE 1
324 static gsize initialized = FALSE;
325 static locale_t C_locale = NULL;
327 if (g_once_init_enter (&initialized))
329 C_locale = newlocale (LC_ALL_MASK, "C", NULL);
330 g_once_init_leave (&initialized, TRUE);
339 * @str: the string to duplicate
341 * Duplicates a string. If @str is %NULL it returns %NULL.
342 * The returned string should be freed with g_free()
343 * when no longer needed.
345 * Returns: a newly-allocated copy of @str
348 g_strdup (const gchar *str)
355 length = strlen (str) + 1;
356 new_str = g_new (char, length);
357 memcpy (new_str, str, length);
367 * @mem: the memory to copy.
368 * @byte_size: the number of bytes to copy.
370 * Allocates @byte_size bytes of memory, and copies @byte_size bytes into it
371 * from @mem. If @mem is %NULL it returns %NULL.
373 * Returns: a pointer to the newly-allocated copy of the memory, or %NULL if @mem
377 g_memdup (gconstpointer mem,
384 new_mem = g_malloc (byte_size);
385 memcpy (new_mem, mem, byte_size);
395 * @str: the string to duplicate
396 * @n: the maximum number of bytes to copy from @str
398 * Duplicates the first @n bytes of a string, returning a newly-allocated
399 * buffer @n + 1 bytes long which will always be nul-terminated. If @str
400 * is less than @n bytes long the buffer is padded with nuls. If @str is
401 * %NULL it returns %NULL. The returned value should be freed when no longer
404 * To copy a number of characters from a UTF-8 encoded string,
405 * use g_utf8_strncpy() instead.
407 * Returns: a newly-allocated buffer containing the first @n bytes
408 * of @str, nul-terminated
411 g_strndup (const gchar *str,
418 new_str = g_new (gchar, n + 1);
419 strncpy (new_str, str, n);
430 * @length: the length of the new string
431 * @fill_char: the byte to fill the string with
433 * Creates a new string @length bytes long filled with @fill_char.
434 * The returned string should be freed when no longer needed.
436 * Returns: a newly-allocated string filled the @fill_char
439 g_strnfill (gsize length,
444 str = g_new (gchar, length + 1);
445 memset (str, (guchar)fill_char, length);
453 * @dest: destination buffer.
454 * @src: source string.
456 * Copies a nul-terminated string into the dest buffer, include the
457 * trailing nul, and return a pointer to the trailing nul byte.
458 * This is useful for concatenating multiple strings together
459 * without having to repeatedly scan for the end.
461 * Returns: a pointer to trailing nul byte.
464 g_stpcpy (gchar *dest,
468 g_return_val_if_fail (dest != NULL, NULL);
469 g_return_val_if_fail (src != NULL, NULL);
470 return stpcpy (dest, src);
473 const gchar *s = src;
475 g_return_val_if_fail (dest != NULL, NULL);
476 g_return_val_if_fail (src != NULL, NULL);
479 while (*s++ != '\0');
487 * @format: a standard printf() format string, but notice
488 * [string precision pitfalls][string-precision]
489 * @args: the list of parameters to insert into the format string
491 * Similar to the standard C vsprintf() function but safer, since it
492 * calculates the maximum space required and allocates memory to hold
493 * the result. The returned string should be freed with g_free() when
496 * See also g_vasprintf(), which offers the same functionality, but
497 * additionally returns the length of the allocated string.
499 * Returns: a newly-allocated string holding the result
502 g_strdup_vprintf (const gchar *format,
505 gchar *string = NULL;
507 g_vasprintf (&string, format, args);
514 * @format: a standard printf() format string, but notice
515 * [string precision pitfalls][string-precision]
516 * @...: the parameters to insert into the format string
518 * Similar to the standard C sprintf() function but safer, since it
519 * calculates the maximum space required and allocates memory to hold
520 * the result. The returned string should be freed with g_free() when no
523 * Returns: a newly-allocated string holding the result
526 g_strdup_printf (const gchar *format,
532 va_start (args, format);
533 buffer = g_strdup_vprintf (format, args);
541 * @string1: the first string to add, which must not be %NULL
542 * @...: a %NULL-terminated list of strings to append to the string
544 * Concatenates all of the given strings into one long string. The
545 * returned string should be freed with g_free() when no longer needed.
547 * The variable argument list must end with %NULL. If you forget the %NULL,
548 * g_strconcat() will start appending random memory junk to your string.
550 * Note that this function is usually not the right function to use to
551 * assemble a translated message from pieces, since proper translation
552 * often requires the pieces to be reordered.
554 * Returns: a newly-allocated string containing all the string arguments
557 g_strconcat (const gchar *string1, ...)
568 l = 1 + strlen (string1);
569 va_start (args, string1);
570 s = va_arg (args, gchar*);
574 s = va_arg (args, gchar*);
578 concat = g_new (gchar, l);
581 ptr = g_stpcpy (ptr, string1);
582 va_start (args, string1);
583 s = va_arg (args, gchar*);
586 ptr = g_stpcpy (ptr, s);
587 s = va_arg (args, gchar*);
596 * @nptr: the string to convert to a numeric value.
597 * @endptr: if non-%NULL, it returns the character after
598 * the last character used in the conversion.
600 * Converts a string to a #gdouble value.
601 * It calls the standard strtod() function to handle the conversion, but
602 * if the string is not completely converted it attempts the conversion
603 * again with g_ascii_strtod(), and returns the best match.
605 * This function should seldom be used. The normal situation when reading
606 * numbers not for human consumption is to use g_ascii_strtod(). Only when
607 * you know that you must expect both locale formatted and C formatted numbers
608 * should you use this. Make sure that you don't pass strings such as comma
609 * separated lists of values, since the commas may be interpreted as a decimal
610 * point in some locales, causing unexpected results.
612 * Returns: the #gdouble value.
615 g_strtod (const gchar *nptr,
623 g_return_val_if_fail (nptr != NULL, 0);
628 val_1 = strtod (nptr, &fail_pos_1);
630 if (fail_pos_1 && fail_pos_1[0] != 0)
631 val_2 = g_ascii_strtod (nptr, &fail_pos_2);
633 if (!fail_pos_1 || fail_pos_1[0] == 0 || fail_pos_1 >= fail_pos_2)
636 *endptr = fail_pos_1;
642 *endptr = fail_pos_2;
649 * @nptr: the string to convert to a numeric value.
650 * @endptr: if non-%NULL, it returns the character after
651 * the last character used in the conversion.
653 * Converts a string to a #gdouble value.
655 * This function behaves like the standard strtod() function
656 * does in the C locale. It does this without actually changing
657 * the current locale, since that would not be thread-safe.
658 * A limitation of the implementation is that this function
659 * will still accept localized versions of infinities and NANs.
661 * This function is typically used when reading configuration
662 * files or other non-user input that should be locale independent.
663 * To handle input from the user you should normally use the
664 * locale-sensitive system strtod() function.
666 * To convert from a #gdouble to a string in a locale-insensitive
667 * way, use g_ascii_dtostr().
669 * If the correct value would cause overflow, plus or minus %HUGE_VAL
670 * is returned (according to the sign of the value), and %ERANGE is
671 * stored in %errno. If the correct value would cause underflow,
672 * zero is returned and %ERANGE is stored in %errno.
674 * This function resets %errno before calling strtod() so that
675 * you can reliably detect overflow and underflow.
677 * Returns: the #gdouble value.
680 g_ascii_strtod (const gchar *nptr,
685 g_return_val_if_fail (nptr != NULL, 0);
689 return strtod_l (nptr, endptr, get_C_locale ());
696 struct lconv *locale_data;
698 const char *decimal_point;
699 int decimal_point_len;
700 const char *p, *decimal_point_pos;
701 const char *end = NULL; /* Silence gcc */
704 g_return_val_if_fail (nptr != NULL, 0);
709 locale_data = localeconv ();
710 decimal_point = locale_data->decimal_point;
711 decimal_point_len = strlen (decimal_point);
714 decimal_point_len = 1;
717 g_assert (decimal_point_len != 0);
719 decimal_point_pos = NULL;
722 if (decimal_point[0] != '.' ||
723 decimal_point[1] != 0)
726 /* Skip leading space */
727 while (g_ascii_isspace (*p))
730 /* Skip leading optional sign */
731 if (*p == '+' || *p == '-')
735 (p[1] == 'x' || p[1] == 'X'))
738 /* HEX - find the (optional) decimal point */
740 while (g_ascii_isxdigit (*p))
744 decimal_point_pos = p++;
746 while (g_ascii_isxdigit (*p))
749 if (*p == 'p' || *p == 'P')
751 if (*p == '+' || *p == '-')
753 while (g_ascii_isdigit (*p))
758 else if (g_ascii_isdigit (*p) || *p == '.')
760 while (g_ascii_isdigit (*p))
764 decimal_point_pos = p++;
766 while (g_ascii_isdigit (*p))
769 if (*p == 'e' || *p == 'E')
771 if (*p == '+' || *p == '-')
773 while (g_ascii_isdigit (*p))
778 /* For the other cases, we need not convert the decimal point */
781 if (decimal_point_pos)
785 /* We need to convert the '.' to the locale specific decimal point */
786 copy = g_malloc (end - nptr + 1 + decimal_point_len);
789 memcpy (c, nptr, decimal_point_pos - nptr);
790 c += decimal_point_pos - nptr;
791 memcpy (c, decimal_point, decimal_point_len);
792 c += decimal_point_len;
793 memcpy (c, decimal_point_pos + 1, end - (decimal_point_pos + 1));
794 c += end - (decimal_point_pos + 1);
798 val = strtod (copy, &fail_pos);
799 strtod_errno = errno;
803 if (fail_pos - copy > decimal_point_pos - nptr)
804 fail_pos = (char *)nptr + (fail_pos - copy) - (decimal_point_len - 1);
806 fail_pos = (char *)nptr + (fail_pos - copy);
816 copy = g_malloc (end - (char *)nptr + 1);
817 memcpy (copy, nptr, end - nptr);
818 *(copy + (end - (char *)nptr)) = 0;
821 val = strtod (copy, &fail_pos);
822 strtod_errno = errno;
826 fail_pos = (char *)nptr + (fail_pos - copy);
834 val = strtod (nptr, &fail_pos);
835 strtod_errno = errno;
841 errno = strtod_errno;
850 * @buffer: A buffer to place the resulting string in
851 * @buf_len: The length of the buffer.
852 * @d: The #gdouble to convert
854 * Converts a #gdouble to a string, using the '.' as
857 * This function generates enough precision that converting
858 * the string back using g_ascii_strtod() gives the same machine-number
859 * (on machines with IEEE compatible 64bit doubles). It is
860 * guaranteed that the size of the resulting string will never
861 * be larger than @G_ASCII_DTOSTR_BUF_SIZE bytes.
863 * Returns: The pointer to the buffer with the converted string.
866 g_ascii_dtostr (gchar *buffer,
870 return g_ascii_formatd (buffer, buf_len, "%.17g", d);
873 #pragma GCC diagnostic push
874 #pragma GCC diagnostic ignored "-Wformat-nonliteral"
878 * @buffer: A buffer to place the resulting string in
879 * @buf_len: The length of the buffer.
880 * @format: The printf()-style format to use for the
881 * code to use for converting.
882 * @d: The #gdouble to convert
884 * Converts a #gdouble to a string, using the '.' as
885 * decimal point. To format the number you pass in
886 * a printf()-style format string. Allowed conversion
887 * specifiers are 'e', 'E', 'f', 'F', 'g' and 'G'.
889 * If you just want to want to serialize the value into a
890 * string, use g_ascii_dtostr().
892 * Returns: The pointer to the buffer with the converted string.
895 g_ascii_formatd (gchar *buffer,
903 old_locale = uselocale (get_C_locale ());
904 _g_snprintf (buffer, buf_len, format, d);
905 uselocale (old_locale);
910 struct lconv *locale_data;
912 const char *decimal_point;
913 int decimal_point_len;
918 g_return_val_if_fail (buffer != NULL, NULL);
919 g_return_val_if_fail (format[0] == '%', NULL);
920 g_return_val_if_fail (strpbrk (format + 1, "'l%") == NULL, NULL);
922 format_char = format[strlen (format) - 1];
924 g_return_val_if_fail (format_char == 'e' || format_char == 'E' ||
925 format_char == 'f' || format_char == 'F' ||
926 format_char == 'g' || format_char == 'G',
929 if (format[0] != '%')
932 if (strpbrk (format + 1, "'l%"))
935 if (!(format_char == 'e' || format_char == 'E' ||
936 format_char == 'f' || format_char == 'F' ||
937 format_char == 'g' || format_char == 'G'))
940 _g_snprintf (buffer, buf_len, format, d);
943 locale_data = localeconv ();
944 decimal_point = locale_data->decimal_point;
945 decimal_point_len = strlen (decimal_point);
948 decimal_point_len = 1;
951 g_assert (decimal_point_len != 0);
953 if (decimal_point[0] != '.' ||
954 decimal_point[1] != 0)
958 while (g_ascii_isspace (*p))
961 if (*p == '+' || *p == '-')
964 while (isdigit ((guchar)*p))
967 if (strncmp (p, decimal_point, decimal_point_len) == 0)
971 if (decimal_point_len > 1)
973 rest_len = strlen (p + (decimal_point_len-1));
974 memmove (p, p + (decimal_point_len-1), rest_len);
983 #pragma GCC diagnostic pop
985 #define ISSPACE(c) ((c) == ' ' || (c) == '\f' || (c) == '\n' || \
986 (c) == '\r' || (c) == '\t' || (c) == '\v')
987 #define ISUPPER(c) ((c) >= 'A' && (c) <= 'Z')
988 #define ISLOWER(c) ((c) >= 'a' && (c) <= 'z')
989 #define ISALPHA(c) (ISUPPER (c) || ISLOWER (c))
990 #define TOUPPER(c) (ISLOWER (c) ? (c) - 'a' + 'A' : (c))
991 #define TOLOWER(c) (ISUPPER (c) ? (c) - 'A' + 'a' : (c))
996 g_parse_long_long (const gchar *nptr,
997 const gchar **endptr,
1001 /* this code is based on on the strtol(3) code from GNU libc released under
1002 * the GNU Lesser General Public License.
1004 * Copyright (C) 1991,92,94,95,96,97,98,99,2000,01,02
1005 * Free Software Foundation, Inc.
1011 const gchar *s, *save;
1014 g_return_val_if_fail (nptr != NULL, 0);
1017 if (base == 1 || base > 36)
1027 /* Skip white space. */
1028 while (ISSPACE (*s))
1031 if (G_UNLIKELY (!*s))
1034 /* Check for a sign. */
1043 /* Recognize number prefix and if BASE is zero, figure it out ourselves. */
1046 if ((base == 0 || base == 16) && TOUPPER (s[1]) == 'X')
1057 /* Save the pointer so we can check later if anything happened. */
1059 cutoff = G_MAXUINT64 / base;
1060 cutlim = G_MAXUINT64 % base;
1067 if (c >= '0' && c <= '9')
1069 else if (ISALPHA (c))
1070 c = TOUPPER (c) - 'A' + 10;
1075 /* Check for overflow. */
1076 if (ui64 > cutoff || (ui64 == cutoff && c > cutlim))
1085 /* Check if anything actually happened. */
1089 /* Store in ENDPTR the address of one character
1090 past the last character we converted. */
1094 if (G_UNLIKELY (overflow))
1103 /* We must handle a special case here: the base is 0 or 16 and the
1104 first two characters are '0' and 'x', but the rest are no
1105 hexadecimal digits. This is no error case. We return 0 and
1106 ENDPTR points to the `x`. */
1109 if (save - nptr >= 2 && TOUPPER (save[-1]) == 'X'
1111 *endptr = &save[-1];
1113 /* There was no number to convert. */
1118 #endif /* !USE_XLOCALE */
1122 * @nptr: the string to convert to a numeric value.
1123 * @endptr: if non-%NULL, it returns the character after
1124 * the last character used in the conversion.
1125 * @base: to be used for the conversion, 2..36 or 0
1127 * Converts a string to a #guint64 value.
1128 * This function behaves like the standard strtoull() function
1129 * does in the C locale. It does this without actually
1130 * changing the current locale, since that would not be
1133 * This function is typically used when reading configuration
1134 * files or other non-user input that should be locale independent.
1135 * To handle input from the user you should normally use the
1136 * locale-sensitive system strtoull() function.
1138 * If the correct value would cause overflow, %G_MAXUINT64
1139 * is returned, and `ERANGE` is stored in `errno`.
1140 * If the base is outside the valid range, zero is returned, and
1141 * `EINVAL` is stored in `errno`.
1142 * If the string conversion fails, zero is returned, and @endptr returns
1143 * @nptr (if @endptr is non-%NULL).
1145 * Returns: the #guint64 value or zero on error.
1150 g_ascii_strtoull (const gchar *nptr,
1155 return strtoull_l (nptr, endptr, base, get_C_locale ());
1160 result = g_parse_long_long (nptr, (const gchar **) endptr, base, &negative);
1162 /* Return the result of the appropriate sign. */
1163 return negative ? -result : result;
1169 * @nptr: the string to convert to a numeric value.
1170 * @endptr: if non-%NULL, it returns the character after
1171 * the last character used in the conversion.
1172 * @base: to be used for the conversion, 2..36 or 0
1174 * Converts a string to a #gint64 value.
1175 * This function behaves like the standard strtoll() function
1176 * does in the C locale. It does this without actually
1177 * changing the current locale, since that would not be
1180 * This function is typically used when reading configuration
1181 * files or other non-user input that should be locale independent.
1182 * To handle input from the user you should normally use the
1183 * locale-sensitive system strtoll() function.
1185 * If the correct value would cause overflow, %G_MAXINT64 or %G_MININT64
1186 * is returned, and `ERANGE` is stored in `errno`.
1187 * If the base is outside the valid range, zero is returned, and
1188 * `EINVAL` is stored in `errno`. If the
1189 * string conversion fails, zero is returned, and @endptr returns @nptr
1190 * (if @endptr is non-%NULL).
1192 * Returns: the #gint64 value or zero on error.
1197 g_ascii_strtoll (const gchar *nptr,
1202 return strtoll_l (nptr, endptr, base, get_C_locale ());
1207 result = g_parse_long_long (nptr, (const gchar **) endptr, base, &negative);
1209 if (negative && result > (guint64) G_MININT64)
1214 else if (!negative && result > (guint64) G_MAXINT64)
1220 return - (gint64) result;
1222 return (gint64) result;
1228 * @errnum: the system error number. See the standard C %errno
1231 * Returns a string corresponding to the given error code, e.g.
1232 * "no such process". You should use this function in preference to
1233 * strerror(), because it returns a string in UTF-8 encoding, and since
1234 * not all platforms support the strerror() function.
1236 * Returns: a UTF-8 string describing the error code. If the error code
1237 * is unknown, it returns "unknown error (<code>)".
1240 g_strerror (gint errnum)
1243 gchar *tofree = NULL;
1245 gint saved_errno = errno;
1247 msg = strerror (errnum);
1248 if (!g_get_charset (NULL))
1249 msg = tofree = g_locale_to_utf8 (msg, -1, NULL, NULL, NULL);
1251 ret = g_intern_string (msg);
1253 errno = saved_errno;
1259 * @signum: the signal number. See the `signal` documentation
1261 * Returns a string describing the given signal, e.g. "Segmentation fault".
1262 * You should use this function in preference to strsignal(), because it
1263 * returns a string in UTF-8 encoding, and since not all platforms support
1264 * the strsignal() function.
1266 * Returns: a UTF-8 string describing the signal. If the signal is unknown,
1267 * it returns "unknown signal (<signum>)".
1270 g_strsignal (gint signum)
1276 msg = tofree = NULL;
1278 #ifdef HAVE_STRSIGNAL
1279 msg = strsignal (signum);
1280 if (!g_get_charset (NULL))
1281 msg = tofree = g_locale_to_utf8 (msg, -1, NULL, NULL, NULL);
1285 msg = tofree = g_strdup_printf ("unknown signal (%d)", signum);
1286 ret = g_intern_string (msg);
1292 /* Functions g_strlcpy and g_strlcat were originally developed by
1293 * Todd C. Miller <Todd.Miller@courtesan.com> to simplify writing secure code.
1294 * See http://www.openbsd.org/cgi-bin/man.cgi?query=strlcpy
1295 * for more information.
1299 /* Use the native ones, if available; they might be implemented in assembly */
1301 g_strlcpy (gchar *dest,
1305 g_return_val_if_fail (dest != NULL, 0);
1306 g_return_val_if_fail (src != NULL, 0);
1308 return strlcpy (dest, src, dest_size);
1312 g_strlcat (gchar *dest,
1316 g_return_val_if_fail (dest != NULL, 0);
1317 g_return_val_if_fail (src != NULL, 0);
1319 return strlcat (dest, src, dest_size);
1322 #else /* ! HAVE_STRLCPY */
1325 * @dest: destination buffer
1326 * @src: source buffer
1327 * @dest_size: length of @dest in bytes
1329 * Portability wrapper that calls strlcpy() on systems which have it,
1330 * and emulates strlcpy() otherwise. Copies @src to @dest; @dest is
1331 * guaranteed to be nul-terminated; @src must be nul-terminated;
1332 * @dest_size is the buffer size, not the number of bytes to copy.
1334 * At most @dest_size - 1 characters will be copied. Always nul-terminates
1335 * (unless @dest_size is 0). This function does not allocate memory. Unlike
1336 * strncpy(), this function doesn't pad @dest (so it's often faster). It
1337 * returns the size of the attempted result, strlen (src), so if
1338 * @retval >= @dest_size, truncation occurred.
1340 * Caveat: strlcpy() is supposedly more secure than strcpy() or strncpy(),
1341 * but if you really want to avoid screwups, g_strdup() is an even better
1344 * Returns: length of @src
1347 g_strlcpy (gchar *dest,
1352 const gchar *s = src;
1353 gsize n = dest_size;
1355 g_return_val_if_fail (dest != NULL, 0);
1356 g_return_val_if_fail (src != NULL, 0);
1358 /* Copy as many bytes as will fit */
1359 if (n != 0 && --n != 0)
1370 /* If not enough room in dest, add NUL and traverse rest of src */
1379 return s - src - 1; /* count does not include NUL */
1384 * @dest: destination buffer, already containing one nul-terminated string
1385 * @src: source buffer
1386 * @dest_size: length of @dest buffer in bytes (not length of existing string
1389 * Portability wrapper that calls strlcat() on systems which have it,
1390 * and emulates it otherwise. Appends nul-terminated @src string to @dest,
1391 * guaranteeing nul-termination for @dest. The total size of @dest won't
1392 * exceed @dest_size.
1394 * At most @dest_size - 1 characters will be copied. Unlike strncat(),
1395 * @dest_size is the full size of dest, not the space left over. This
1396 * function does not allocate memory. It always nul-terminates (unless
1397 * @dest_size == 0 or there were no nul characters in the @dest_size
1398 * characters of dest to start with).
1400 * Caveat: this is supposedly a more secure alternative to strcat() or
1401 * strncat(), but for real security g_strconcat() is harder to mess up.
1403 * Returns: size of attempted result, which is MIN (dest_size, strlen
1404 * (original dest)) + strlen (src), so if retval >= dest_size,
1405 * truncation occurred.
1408 g_strlcat (gchar *dest,
1413 const gchar *s = src;
1414 gsize bytes_left = dest_size;
1415 gsize dlength; /* Logically, MIN (strlen (d), dest_size) */
1417 g_return_val_if_fail (dest != NULL, 0);
1418 g_return_val_if_fail (src != NULL, 0);
1420 /* Find the end of dst and adjust bytes left but don't go past end */
1421 while (*d != 0 && bytes_left-- != 0)
1424 bytes_left = dest_size - dlength;
1426 if (bytes_left == 0)
1427 return dlength + strlen (s);
1431 if (bytes_left != 1)
1440 return dlength + (s - src); /* count does not include NUL */
1442 #endif /* ! HAVE_STRLCPY */
1447 * @len: length of @str in bytes, or -1 if @str is nul-terminated
1449 * Converts all upper case ASCII letters to lower case ASCII letters.
1451 * Returns: a newly-allocated string, with all the upper case
1452 * characters in @str converted to lower case, with semantics that
1453 * exactly match g_ascii_tolower(). (Note that this is unlike the
1454 * old g_strdown(), which modified the string in place.)
1457 g_ascii_strdown (const gchar *str,
1462 g_return_val_if_fail (str != NULL, NULL);
1467 result = g_strndup (str, len);
1468 for (s = result; *s; s++)
1469 *s = g_ascii_tolower (*s);
1477 * @len: length of @str in bytes, or -1 if @str is nul-terminated
1479 * Converts all lower case ASCII letters to upper case ASCII letters.
1481 * Returns: a newly allocated string, with all the lower case
1482 * characters in @str converted to upper case, with semantics that
1483 * exactly match g_ascii_toupper(). (Note that this is unlike the
1484 * old g_strup(), which modified the string in place.)
1487 g_ascii_strup (const gchar *str,
1492 g_return_val_if_fail (str != NULL, NULL);
1497 result = g_strndup (str, len);
1498 for (s = result; *s; s++)
1499 *s = g_ascii_toupper (*s);
1508 * Determines if a string is pure ASCII. A string is pure ASCII if it
1509 * contains no bytes with the high bit set.
1511 * Returns: %TRUE if @str is ASCII
1516 g_str_is_ascii (const gchar *str)
1520 for (i = 0; str[i]; i++)
1529 * @string: the string to convert.
1531 * Converts a string to lower case.
1533 * Returns: the string
1535 * Deprecated:2.2: This function is totally broken for the reasons discussed
1536 * in the g_strncasecmp() docs - use g_ascii_strdown() or g_utf8_strdown()
1540 g_strdown (gchar *string)
1544 g_return_val_if_fail (string != NULL, NULL);
1546 s = (guchar *) string;
1555 return (gchar *) string;
1560 * @string: the string to convert
1562 * Converts a string to upper case.
1564 * Returns: the string
1566 * Deprecated:2.2: This function is totally broken for the reasons
1567 * discussed in the g_strncasecmp() docs - use g_ascii_strup()
1568 * or g_utf8_strup() instead.
1571 g_strup (gchar *string)
1575 g_return_val_if_fail (string != NULL, NULL);
1577 s = (guchar *) string;
1586 return (gchar *) string;
1591 * @string: the string to reverse
1593 * Reverses all of the bytes in a string. For example,
1594 * `g_strreverse ("abcdef")` will result in "fedcba".
1596 * Note that g_strreverse() doesn't work on UTF-8 strings
1597 * containing multibyte characters. For that purpose, use
1598 * g_utf8_strreverse().
1600 * Returns: the same pointer passed in as @string
1603 g_strreverse (gchar *string)
1605 g_return_val_if_fail (string != NULL, NULL);
1612 t = string + strlen (string) - 1;
1633 * Convert a character to ASCII lower case.
1635 * Unlike the standard C library tolower() function, this only
1636 * recognizes standard ASCII letters and ignores the locale, returning
1637 * all non-ASCII characters unchanged, even if they are lower case
1638 * letters in a particular character set. Also unlike the standard
1639 * library function, this takes and returns a char, not an int, so
1640 * don't call it on %EOF but no need to worry about casting to #guchar
1641 * before passing a possibly non-ASCII character in.
1643 * Returns: the result of converting @c to lower case. If @c is
1644 * not an ASCII upper case letter, @c is returned unchanged.
1647 g_ascii_tolower (gchar c)
1649 return g_ascii_isupper (c) ? c - 'A' + 'a' : c;
1656 * Convert a character to ASCII upper case.
1658 * Unlike the standard C library toupper() function, this only
1659 * recognizes standard ASCII letters and ignores the locale, returning
1660 * all non-ASCII characters unchanged, even if they are upper case
1661 * letters in a particular character set. Also unlike the standard
1662 * library function, this takes and returns a char, not an int, so
1663 * don't call it on %EOF but no need to worry about casting to #guchar
1664 * before passing a possibly non-ASCII character in.
1666 * Returns: the result of converting @c to upper case. If @c is not
1667 * an ASCII lower case letter, @c is returned unchanged.
1670 g_ascii_toupper (gchar c)
1672 return g_ascii_islower (c) ? c - 'a' + 'A' : c;
1676 * g_ascii_digit_value:
1677 * @c: an ASCII character
1679 * Determines the numeric value of a character as a decimal digit.
1680 * Differs from g_unichar_digit_value() because it takes a char, so
1681 * there's no worry about sign extension if characters are signed.
1683 * Returns: If @c is a decimal digit (according to g_ascii_isdigit()),
1684 * its numeric value. Otherwise, -1.
1687 g_ascii_digit_value (gchar c)
1689 if (g_ascii_isdigit (c))
1695 * g_ascii_xdigit_value:
1696 * @c: an ASCII character.
1698 * Determines the numeric value of a character as a hexidecimal
1699 * digit. Differs from g_unichar_xdigit_value() because it takes
1700 * a char, so there's no worry about sign extension if characters
1703 * Returns: If @c is a hex digit (according to g_ascii_isxdigit()),
1704 * its numeric value. Otherwise, -1.
1707 g_ascii_xdigit_value (gchar c)
1709 if (c >= 'A' && c <= 'F')
1710 return c - 'A' + 10;
1711 if (c >= 'a' && c <= 'f')
1712 return c - 'a' + 10;
1713 return g_ascii_digit_value (c);
1717 * g_ascii_strcasecmp:
1718 * @s1: string to compare with @s2
1719 * @s2: string to compare with @s1
1721 * Compare two strings, ignoring the case of ASCII characters.
1723 * Unlike the BSD strcasecmp() function, this only recognizes standard
1724 * ASCII letters and ignores the locale, treating all non-ASCII
1725 * bytes as if they are not letters.
1727 * This function should be used only on strings that are known to be
1728 * in encodings where the bytes corresponding to ASCII letters always
1729 * represent themselves. This includes UTF-8 and the ISO-8859-*
1730 * charsets, but not for instance double-byte encodings like the
1731 * Windows Codepage 932, where the trailing bytes of double-byte
1732 * characters include all ASCII letters. If you compare two CP932
1733 * strings using this function, you will get false matches.
1735 * Both @s1 and @s2 must be non-%NULL.
1737 * Returns: 0 if the strings match, a negative value if @s1 < @s2,
1738 * or a positive value if @s1 > @s2.
1741 g_ascii_strcasecmp (const gchar *s1,
1746 g_return_val_if_fail (s1 != NULL, 0);
1747 g_return_val_if_fail (s2 != NULL, 0);
1751 c1 = (gint)(guchar) TOLOWER (*s1);
1752 c2 = (gint)(guchar) TOLOWER (*s2);
1758 return (((gint)(guchar) *s1) - ((gint)(guchar) *s2));
1762 * g_ascii_strncasecmp:
1763 * @s1: string to compare with @s2
1764 * @s2: string to compare with @s1
1765 * @n: number of characters to compare
1767 * Compare @s1 and @s2, ignoring the case of ASCII characters and any
1768 * characters after the first @n in each string.
1770 * Unlike the BSD strcasecmp() function, this only recognizes standard
1771 * ASCII letters and ignores the locale, treating all non-ASCII
1772 * characters as if they are not letters.
1774 * The same warning as in g_ascii_strcasecmp() applies: Use this
1775 * function only on strings known to be in encodings where bytes
1776 * corresponding to ASCII letters always represent themselves.
1778 * Returns: 0 if the strings match, a negative value if @s1 < @s2,
1779 * or a positive value if @s1 > @s2.
1782 g_ascii_strncasecmp (const gchar *s1,
1788 g_return_val_if_fail (s1 != NULL, 0);
1789 g_return_val_if_fail (s2 != NULL, 0);
1791 while (n && *s1 && *s2)
1794 c1 = (gint)(guchar) TOLOWER (*s1);
1795 c2 = (gint)(guchar) TOLOWER (*s2);
1802 return (((gint) (guchar) *s1) - ((gint) (guchar) *s2));
1810 * @s2: a string to compare with @s1
1812 * A case-insensitive string comparison, corresponding to the standard
1813 * strcasecmp() function on platforms which support it.
1815 * Returns: 0 if the strings match, a negative value if @s1 < @s2,
1816 * or a positive value if @s1 > @s2.
1818 * Deprecated:2.2: See g_strncasecmp() for a discussion of why this
1819 * function is deprecated and how to replace it.
1822 g_strcasecmp (const gchar *s1,
1825 #ifdef HAVE_STRCASECMP
1826 g_return_val_if_fail (s1 != NULL, 0);
1827 g_return_val_if_fail (s2 != NULL, 0);
1829 return strcasecmp (s1, s2);
1833 g_return_val_if_fail (s1 != NULL, 0);
1834 g_return_val_if_fail (s2 != NULL, 0);
1838 /* According to A. Cox, some platforms have islower's that
1839 * don't work right on non-uppercase
1841 c1 = isupper ((guchar)*s1) ? tolower ((guchar)*s1) : *s1;
1842 c2 = isupper ((guchar)*s2) ? tolower ((guchar)*s2) : *s2;
1848 return (((gint)(guchar) *s1) - ((gint)(guchar) *s2));
1855 * @s2: a string to compare with @s1
1856 * @n: the maximum number of characters to compare
1858 * A case-insensitive string comparison, corresponding to the standard
1859 * strncasecmp() function on platforms which support it. It is similar
1860 * to g_strcasecmp() except it only compares the first @n characters of
1863 * Returns: 0 if the strings match, a negative value if @s1 < @s2,
1864 * or a positive value if @s1 > @s2.
1866 * Deprecated:2.2: The problem with g_strncasecmp() is that it does
1867 * the comparison by calling toupper()/tolower(). These functions
1868 * are locale-specific and operate on single bytes. However, it is
1869 * impossible to handle things correctly from an internationalization
1870 * standpoint by operating on bytes, since characters may be multibyte.
1871 * Thus g_strncasecmp() is broken if your string is guaranteed to be
1872 * ASCII, since it is locale-sensitive, and it's broken if your string
1873 * is localized, since it doesn't work on many encodings at all,
1874 * including UTF-8, EUC-JP, etc.
1876 * There are therefore two replacement techniques: g_ascii_strncasecmp(),
1877 * which only works on ASCII and is not locale-sensitive, and
1878 * g_utf8_casefold() followed by strcmp() on the resulting strings,
1879 * which is good for case-insensitive sorting of UTF-8.
1882 g_strncasecmp (const gchar *s1,
1886 #ifdef HAVE_STRNCASECMP
1887 return strncasecmp (s1, s2, n);
1891 g_return_val_if_fail (s1 != NULL, 0);
1892 g_return_val_if_fail (s2 != NULL, 0);
1894 while (n && *s1 && *s2)
1897 /* According to A. Cox, some platforms have islower's that
1898 * don't work right on non-uppercase
1900 c1 = isupper ((guchar)*s1) ? tolower ((guchar)*s1) : *s1;
1901 c2 = isupper ((guchar)*s2) ? tolower ((guchar)*s2) : *s2;
1908 return (((gint) (guchar) *s1) - ((gint) (guchar) *s2));
1916 * @string: the string to convert
1917 * @delimiters: (allow-none): a string containing the current delimiters,
1918 * or %NULL to use the standard delimiters defined in #G_STR_DELIMITERS
1919 * @new_delimiter: the new delimiter character
1921 * Converts any delimiter characters in @string to @new_delimiter.
1922 * Any characters in @string which are found in @delimiters are
1923 * changed to the @new_delimiter character. Modifies @string in place,
1924 * and returns @string itself, not a copy. The return value is to
1925 * allow nesting such as
1926 * |[<!-- language="C" -->
1927 * g_ascii_strup (g_strdelimit (str, "abc", '?'))
1933 g_strdelimit (gchar *string,
1934 const gchar *delimiters,
1939 g_return_val_if_fail (string != NULL, NULL);
1942 delimiters = G_STR_DELIMITERS;
1944 for (c = string; *c; c++)
1946 if (strchr (delimiters, *c))
1955 * @string: a nul-terminated array of bytes
1956 * @valid_chars: bytes permitted in @string
1957 * @substitutor: replacement character for disallowed bytes
1959 * For each character in @string, if the character is not in @valid_chars,
1960 * replaces the character with @substitutor. Modifies @string in place,
1961 * and return @string itself, not a copy. The return value is to allow
1963 * |[<!-- language="C" -->
1964 * g_ascii_strup (g_strcanon (str, "abc", '?'))
1970 g_strcanon (gchar *string,
1971 const gchar *valid_chars,
1976 g_return_val_if_fail (string != NULL, NULL);
1977 g_return_val_if_fail (valid_chars != NULL, NULL);
1979 for (c = string; *c; c++)
1981 if (!strchr (valid_chars, *c))
1990 * @source: a string to compress
1992 * Replaces all escaped characters with their one byte equivalent.
1994 * This function does the reverse conversion of g_strescape().
1996 * Returns: a newly-allocated copy of @source with all escaped
1997 * character compressed
2000 g_strcompress (const gchar *source)
2002 const gchar *p = source, *octal;
2006 g_return_val_if_fail (source != NULL, NULL);
2008 dest = g_malloc (strlen (source) + 1);
2019 g_warning ("g_strcompress: trailing \\");
2021 case '0': case '1': case '2': case '3': case '4':
2022 case '5': case '6': case '7':
2025 while ((p < octal + 3) && (*p >= '0') && (*p <= '7'))
2027 *q = (*q * 8) + (*p - '0');
2051 default: /* Also handles \" and \\ */
2068 * @source: a string to escape
2069 * @exceptions: a string of characters not to escape in @source
2071 * Escapes the special characters '\b', '\f', '\n', '\r', '\t', '\v', '\'
2072 * and '"' in the string @source by inserting a '\' before
2073 * them. Additionally all characters in the range 0x01-0x1F (everything
2074 * below SPACE) and in the range 0x7F-0xFF (all non-ASCII chars) are
2075 * replaced with a '\' followed by their octal representation.
2076 * Characters supplied in @exceptions are not escaped.
2078 * g_strcompress() does the reverse conversion.
2080 * Returns: a newly-allocated copy of @source with certain
2081 * characters escaped. See above.
2084 g_strescape (const gchar *source,
2085 const gchar *exceptions)
2092 g_return_val_if_fail (source != NULL, NULL);
2094 p = (guchar *) source;
2095 /* Each source byte needs maximally four destination chars (\777) */
2096 q = dest = g_malloc (strlen (source) * 4 + 1);
2098 memset (excmap, 0, 256);
2101 guchar *e = (guchar *) exceptions;
2151 if ((*p < ' ') || (*p >= 0177))
2154 *q++ = '0' + (((*p) >> 6) & 07);
2155 *q++ = '0' + (((*p) >> 3) & 07);
2156 *q++ = '0' + ((*p) & 07);
2171 * @string: a string to remove the leading whitespace from
2173 * Removes leading whitespace from a string, by moving the rest
2174 * of the characters forward.
2176 * This function doesn't allocate or reallocate any memory;
2177 * it modifies @string in place. Therefore, it cannot be used on
2178 * statically allocated strings.
2180 * The pointer to @string is returned to allow the nesting of functions.
2182 * Also see g_strchomp() and g_strstrip().
2187 g_strchug (gchar *string)
2191 g_return_val_if_fail (string != NULL, NULL);
2193 for (start = (guchar*) string; *start && g_ascii_isspace (*start); start++)
2196 memmove (string, start, strlen ((gchar *) start) + 1);
2203 * @string: a string to remove the trailing whitespace from
2205 * Removes trailing whitespace from a string.
2207 * This function doesn't allocate or reallocate any memory;
2208 * it modifies @string in place. Therefore, it cannot be used
2209 * on statically allocated strings.
2211 * The pointer to @string is returned to allow the nesting of functions.
2213 * Also see g_strchug() and g_strstrip().
2218 g_strchomp (gchar *string)
2222 g_return_val_if_fail (string != NULL, NULL);
2224 len = strlen (string);
2227 if (g_ascii_isspace ((guchar) string[len]))
2238 * @string: a string to split
2239 * @delimiter: a string which specifies the places at which to split
2240 * the string. The delimiter is not included in any of the resulting
2241 * strings, unless @max_tokens is reached.
2242 * @max_tokens: the maximum number of pieces to split @string into.
2243 * If this is less than 1, the string is split completely.
2245 * Splits a string into a maximum of @max_tokens pieces, using the given
2246 * @delimiter. If @max_tokens is reached, the remainder of @string is
2247 * appended to the last token.
2249 * As an example, the result of g_strsplit (":a:bc::d:", ":", -1) is a
2250 * %NULL-terminated vector containing the six strings "", "a", "bc", "", "d"
2253 * As a special case, the result of splitting the empty string "" is an empty
2254 * vector, not a vector containing a single string. The reason for this
2255 * special case is that being able to represent a empty vector is typically
2256 * more useful than consistent handling of empty elements. If you do need
2257 * to represent empty elements, you'll need to check for the empty string
2258 * before calling g_strsplit().
2260 * Returns: a newly-allocated %NULL-terminated array of strings. Use
2261 * g_strfreev() to free it.
2264 g_strsplit (const gchar *string,
2265 const gchar *delimiter,
2268 GSList *string_list = NULL, *slist;
2269 gchar **str_array, *s;
2271 const gchar *remainder;
2273 g_return_val_if_fail (string != NULL, NULL);
2274 g_return_val_if_fail (delimiter != NULL, NULL);
2275 g_return_val_if_fail (delimiter[0] != '\0', NULL);
2278 max_tokens = G_MAXINT;
2281 s = strstr (remainder, delimiter);
2284 gsize delimiter_len = strlen (delimiter);
2286 while (--max_tokens && s)
2290 len = s - remainder;
2291 string_list = g_slist_prepend (string_list,
2292 g_strndup (remainder, len));
2294 remainder = s + delimiter_len;
2295 s = strstr (remainder, delimiter);
2301 string_list = g_slist_prepend (string_list, g_strdup (remainder));
2304 str_array = g_new (gchar*, n + 1);
2306 str_array[n--] = NULL;
2307 for (slist = string_list; slist; slist = slist->next)
2308 str_array[n--] = slist->data;
2310 g_slist_free (string_list);
2317 * @string: The string to be tokenized
2318 * @delimiters: A nul-terminated string containing bytes that are used
2319 * to split the string.
2320 * @max_tokens: The maximum number of tokens to split @string into.
2321 * If this is less than 1, the string is split completely
2323 * Splits @string into a number of tokens not containing any of the characters
2324 * in @delimiter. A token is the (possibly empty) longest string that does not
2325 * contain any of the characters in @delimiters. If @max_tokens is reached, the
2326 * remainder is appended to the last token.
2328 * For example the result of g_strsplit_set ("abc:def/ghi", ":/", -1) is a
2329 * %NULL-terminated vector containing the three strings "abc", "def",
2332 * The result of g_strsplit_set (":def/ghi:", ":/", -1) is a %NULL-terminated
2333 * vector containing the four strings "", "def", "ghi", and "".
2335 * As a special case, the result of splitting the empty string "" is an empty
2336 * vector, not a vector containing a single string. The reason for this
2337 * special case is that being able to represent a empty vector is typically
2338 * more useful than consistent handling of empty elements. If you do need
2339 * to represent empty elements, you'll need to check for the empty string
2340 * before calling g_strsplit_set().
2342 * Note that this function works on bytes not characters, so it can't be used
2343 * to delimit UTF-8 strings for anything but ASCII characters.
2345 * Returns: a newly-allocated %NULL-terminated array of strings. Use
2346 * g_strfreev() to free it.
2351 g_strsplit_set (const gchar *string,
2352 const gchar *delimiters,
2355 gboolean delim_table[256];
2356 GSList *tokens, *list;
2359 const gchar *current;
2363 g_return_val_if_fail (string != NULL, NULL);
2364 g_return_val_if_fail (delimiters != NULL, NULL);
2367 max_tokens = G_MAXINT;
2369 if (*string == '\0')
2371 result = g_new (char *, 1);
2376 memset (delim_table, FALSE, sizeof (delim_table));
2377 for (s = delimiters; *s != '\0'; ++s)
2378 delim_table[*(guchar *)s] = TRUE;
2383 s = current = string;
2386 if (delim_table[*(guchar *)s] && n_tokens + 1 < max_tokens)
2388 token = g_strndup (current, s - current);
2389 tokens = g_slist_prepend (tokens, token);
2398 token = g_strndup (current, s - current);
2399 tokens = g_slist_prepend (tokens, token);
2402 result = g_new (gchar *, n_tokens + 1);
2404 result[n_tokens] = NULL;
2405 for (list = tokens; list != NULL; list = list->next)
2406 result[--n_tokens] = list->data;
2408 g_slist_free (tokens);
2415 * @str_array: a %NULL-terminated array of strings to free
2417 * Frees a %NULL-terminated array of strings, and the array itself.
2418 * If called on a %NULL value, g_strfreev() simply returns.
2421 g_strfreev (gchar **str_array)
2427 for (i = 0; str_array[i] != NULL; i++)
2428 g_free (str_array[i]);
2436 * @str_array: a %NULL-terminated array of strings
2438 * Copies %NULL-terminated array of strings. The copy is a deep copy;
2439 * the new array should be freed by first freeing each string, then
2440 * the array itself. g_strfreev() does this for you. If called
2441 * on a %NULL value, g_strdupv() simply returns %NULL.
2443 * Returns: a new %NULL-terminated array of strings.
2446 g_strdupv (gchar **str_array)
2454 while (str_array[i])
2457 retval = g_new (gchar*, i + 1);
2460 while (str_array[i])
2462 retval[i] = g_strdup (str_array[i]);
2475 * @separator: (allow-none): a string to insert between each of the
2477 * @str_array: a %NULL-terminated array of strings to join
2479 * Joins a number of strings together to form one long string, with the
2480 * optional @separator inserted between each of them. The returned string
2481 * should be freed with g_free().
2483 * Returns: a newly-allocated string containing all of the strings joined
2484 * together, with @separator between them
2487 g_strjoinv (const gchar *separator,
2493 g_return_val_if_fail (str_array != NULL, NULL);
2495 if (separator == NULL)
2502 gsize separator_len;
2504 separator_len = strlen (separator);
2505 /* First part, getting length */
2506 len = 1 + strlen (str_array[0]);
2507 for (i = 1; str_array[i] != NULL; i++)
2508 len += strlen (str_array[i]);
2509 len += separator_len * (i - 1);
2511 /* Second part, building string */
2512 string = g_new (gchar, len);
2513 ptr = g_stpcpy (string, *str_array);
2514 for (i = 1; str_array[i] != NULL; i++)
2516 ptr = g_stpcpy (ptr, separator);
2517 ptr = g_stpcpy (ptr, str_array[i]);
2521 string = g_strdup ("");
2528 * @separator: (allow-none): a string to insert between each of the
2530 * @...: a %NULL-terminated list of strings to join
2532 * Joins a number of strings together to form one long string, with the
2533 * optional @separator inserted between each of them. The returned string
2534 * should be freed with g_free().
2536 * Returns: a newly-allocated string containing all of the strings joined
2537 * together, with @separator between them
2540 g_strjoin (const gchar *separator,
2546 gsize separator_len;
2549 if (separator == NULL)
2552 separator_len = strlen (separator);
2554 va_start (args, separator);
2556 s = va_arg (args, gchar*);
2560 /* First part, getting length */
2561 len = 1 + strlen (s);
2563 s = va_arg (args, gchar*);
2566 len += separator_len + strlen (s);
2567 s = va_arg (args, gchar*);
2571 /* Second part, building string */
2572 string = g_new (gchar, len);
2574 va_start (args, separator);
2576 s = va_arg (args, gchar*);
2577 ptr = g_stpcpy (string, s);
2579 s = va_arg (args, gchar*);
2582 ptr = g_stpcpy (ptr, separator);
2583 ptr = g_stpcpy (ptr, s);
2584 s = va_arg (args, gchar*);
2588 string = g_strdup ("");
2598 * @haystack: a string
2599 * @haystack_len: the maximum length of @haystack. Note that -1 is
2600 * a valid length, if @haystack is nul-terminated, meaning it will
2601 * search through the whole string.
2602 * @needle: the string to search for
2604 * Searches the string @haystack for the first occurrence
2605 * of the string @needle, limiting the length of the search
2608 * Returns: a pointer to the found occurrence, or
2609 * %NULL if not found.
2612 g_strstr_len (const gchar *haystack,
2613 gssize haystack_len,
2614 const gchar *needle)
2616 g_return_val_if_fail (haystack != NULL, NULL);
2617 g_return_val_if_fail (needle != NULL, NULL);
2619 if (haystack_len < 0)
2620 return strstr (haystack, needle);
2623 const gchar *p = haystack;
2624 gsize needle_len = strlen (needle);
2628 if (needle_len == 0)
2629 return (gchar *)haystack;
2631 if (haystack_len < needle_len)
2634 end = haystack + haystack_len - needle_len;
2636 while (p <= end && *p)
2638 for (i = 0; i < needle_len; i++)
2639 if (p[i] != needle[i])
2654 * @haystack: a nul-terminated string
2655 * @needle: the nul-terminated string to search for
2657 * Searches the string @haystack for the last occurrence
2658 * of the string @needle.
2660 * Returns: a pointer to the found occurrence, or
2661 * %NULL if not found.
2664 g_strrstr (const gchar *haystack,
2665 const gchar *needle)
2672 g_return_val_if_fail (haystack != NULL, NULL);
2673 g_return_val_if_fail (needle != NULL, NULL);
2675 needle_len = strlen (needle);
2676 haystack_len = strlen (haystack);
2678 if (needle_len == 0)
2679 return (gchar *)haystack;
2681 if (haystack_len < needle_len)
2684 p = haystack + haystack_len - needle_len;
2686 while (p >= haystack)
2688 for (i = 0; i < needle_len; i++)
2689 if (p[i] != needle[i])
2703 * @haystack: a nul-terminated string
2704 * @haystack_len: the maximum length of @haystack
2705 * @needle: the nul-terminated string to search for
2707 * Searches the string @haystack for the last occurrence
2708 * of the string @needle, limiting the length of the search
2711 * Returns: a pointer to the found occurrence, or
2712 * %NULL if not found.
2715 g_strrstr_len (const gchar *haystack,
2716 gssize haystack_len,
2717 const gchar *needle)
2719 g_return_val_if_fail (haystack != NULL, NULL);
2720 g_return_val_if_fail (needle != NULL, NULL);
2722 if (haystack_len < 0)
2723 return g_strrstr (haystack, needle);
2726 gsize needle_len = strlen (needle);
2727 const gchar *haystack_max = haystack + haystack_len;
2728 const gchar *p = haystack;
2731 while (p < haystack_max && *p)
2734 if (p < haystack + needle_len)
2739 while (p >= haystack)
2741 for (i = 0; i < needle_len; i++)
2742 if (p[i] != needle[i])
2758 * @str: a nul-terminated string
2759 * @suffix: the nul-terminated suffix to look for
2761 * Looks whether the string @str ends with @suffix.
2763 * Returns: %TRUE if @str end with @suffix, %FALSE otherwise.
2768 g_str_has_suffix (const gchar *str,
2769 const gchar *suffix)
2774 g_return_val_if_fail (str != NULL, FALSE);
2775 g_return_val_if_fail (suffix != NULL, FALSE);
2777 str_len = strlen (str);
2778 suffix_len = strlen (suffix);
2780 if (str_len < suffix_len)
2783 return strcmp (str + str_len - suffix_len, suffix) == 0;
2788 * @str: a nul-terminated string
2789 * @prefix: the nul-terminated prefix to look for
2791 * Looks whether the string @str begins with @prefix.
2793 * Returns: %TRUE if @str begins with @prefix, %FALSE otherwise.
2798 g_str_has_prefix (const gchar *str,
2799 const gchar *prefix)
2801 g_return_val_if_fail (str != NULL, FALSE);
2802 g_return_val_if_fail (prefix != NULL, FALSE);
2804 return strncmp (str, prefix, strlen (prefix)) == 0;
2809 * @str_array: a %NULL-terminated array of strings
2811 * Returns the length of the given %NULL-terminated
2812 * string array @str_array.
2814 * Returns: length of @str_array.
2819 g_strv_length (gchar **str_array)
2823 g_return_val_if_fail (str_array != NULL, 0);
2825 while (str_array[i])
2832 index_add_folded (GPtrArray *array,
2838 normal = g_utf8_normalize (start, end - start, G_NORMALIZE_ALL_COMPOSE);
2840 /* TODO: Invent time machine. Converse with Mustafa Ataturk... */
2841 if (strstr (normal, "ı") || strstr (normal, "İ"))
2846 tmp = g_string_new (NULL);
2852 i = strstr (s, "ı");
2853 I = strstr (s, "İ");
2866 g_string_append_len (tmp, s, e - s);
2867 g_string_append_c (tmp, 'i');
2868 s = g_utf8_next_char (e);
2871 g_string_append (tmp, s);
2873 normal = g_string_free (tmp, FALSE);
2876 g_ptr_array_add (array, g_utf8_casefold (normal, -1));
2881 split_words (const gchar *value)
2883 const gchar *start = NULL;
2887 result = g_ptr_array_new ();
2889 for (s = value; *s; s = g_utf8_next_char (s))
2891 gunichar c = g_utf8_get_char (s);
2895 if (g_unichar_isalnum (c) || g_unichar_ismark (c))
2900 if (!g_unichar_isalnum (c) && !g_unichar_ismark (c))
2902 index_add_folded (result, start, s);
2909 index_add_folded (result, start, s);
2911 g_ptr_array_add (result, NULL);
2913 return (gchar **) g_ptr_array_free (result, FALSE);
2917 * g_str_tokenize_and_fold:
2919 * @translit_locale: (allow-none): the language code (like 'de' or
2920 * 'en_GB') from which @string originates
2921 * @ascii_alternates: (out) (transfer full) (array zero-terminated=1): a
2922 * return location for ASCII alternates
2924 * Tokenises @string and performs folding on each token.
2926 * A token is a non-empty sequence of alphanumeric characters in the
2927 * source string, separated by non-alphanumeric characters. An
2928 * "alphanumeric" character for this purpose is one that matches
2929 * g_unichar_isalnum() or g_unichar_ismark().
2931 * Each token is then (Unicode) normalised and case-folded. If
2932 * @ascii_alternates is non-%NULL and some of the returned tokens
2933 * contain non-ASCII characters, ASCII alternatives will be generated.
2935 * The number of ASCII alternatives that are generated and the method
2936 * for doing so is unspecified, but @translit_locale (if specified) may
2937 * improve the transliteration if the language of the source string is
2940 * Returns: (transfer full) (array zero-terminated=1): the folded tokens
2945 g_str_tokenize_and_fold (const gchar *string,
2946 const gchar *translit_locale,
2947 gchar ***ascii_alternates)
2951 g_return_val_if_fail (string != NULL, NULL);
2953 if (ascii_alternates && g_str_is_ascii (string))
2955 *ascii_alternates = g_new0 (gchar *, 0 + 1);
2956 ascii_alternates = NULL;
2959 result = split_words (string);
2961 if (ascii_alternates)
2965 n = g_strv_length (result);
2966 *ascii_alternates = g_new (gchar *, n + 1);
2969 for (i = 0; i < n; i++)
2971 if (!g_str_is_ascii (result[i]))
2977 composed = g_utf8_normalize (result[i], -1, G_NORMALIZE_ALL_COMPOSE);
2979 ascii = g_str_to_ascii (composed, translit_locale);
2981 /* Only accept strings that are now entirely alnums */
2982 for (k = 0; ascii[k]; k++)
2983 if (!g_ascii_isalnum (ascii[k]))
2986 if (ascii[k] == '\0')
2987 /* Made it to the end... */
2988 (*ascii_alternates)[j++] = ascii;
2996 (*ascii_alternates)[j] = NULL;
3003 * g_str_match_string:
3004 * @search_term: the search term from the user
3005 * @potential_hit: the text that may be a hit
3006 * @accept_alternates: %TRUE to accept ASCII alternates
3008 * Checks if a search conducted for @search_term should match
3011 * This function calls g_str_tokenize_and_fold() on both
3012 * @search_term and @potential_hit. ASCII alternates are never taken
3013 * for @search_term but will be taken for @potential_hit according to
3014 * the value of @accept_alternates.
3016 * A hit occurs when each folded token in @search_term is a prefix of a
3017 * folded token from @potential_hit.
3019 * Depending on how you're performing the search, it will typically be
3020 * faster to call g_str_tokenize_and_fold() on each string in
3021 * your corpus and build an index on the returned folded tokens, then
3022 * call g_str_tokenize_and_fold() on the search term and
3023 * perform lookups into that index.
3025 * As some examples, searching for "fred" would match the potential hit
3026 * "Smith, Fred" and also "Frédéric". Searching for "Fréd" would match
3027 * "Frédéric" but not "Frederic" (due to the one-directional nature of
3028 * accent matching). Searching "fo" would match "Foo" and "Bar Foo
3029 * Baz", but not "SFO" (because no word as "fo" as a prefix).
3031 * Returns: %TRUE if @potential_hit is a hit
3036 g_str_match_string (const gchar *search_term,
3037 const gchar *potential_hit,
3038 gboolean accept_alternates)
3040 gchar **alternates = NULL;
3041 gchar **term_tokens;
3046 g_return_val_if_fail (search_term != NULL, FALSE);
3047 g_return_val_if_fail (potential_hit != NULL, FALSE);
3049 term_tokens = g_str_tokenize_and_fold (search_term, NULL, NULL);
3050 hit_tokens = g_str_tokenize_and_fold (potential_hit, NULL, accept_alternates ? &alternates : NULL);
3054 for (i = 0; term_tokens[i]; i++)
3056 for (j = 0; hit_tokens[j]; j++)
3057 if (g_str_has_prefix (hit_tokens[j], term_tokens[i]))
3060 if (accept_alternates)
3061 for (j = 0; alternates[j]; j++)
3062 if (g_str_has_prefix (alternates[j], term_tokens[i]))
3072 g_strfreev (term_tokens);
3073 g_strfreev (hit_tokens);
3074 g_strfreev (alternates);