Coverage Report

Created: 2026-05-23 06:16

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/usr/local/include/glib-2.0/glib/gstrfuncs.h
Line
Count
Source
1
/* GLIB - Library of useful routines for C programming
2
 * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
3
 *
4
 * SPDX-License-Identifier: LGPL-2.1-or-later
5
 *
6
 * This library is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU Lesser General Public
8
 * License as published by the Free Software Foundation; either
9
 * version 2.1 of the License, or (at your option) any later version.
10
 *
11
 * This library is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
 * Lesser General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU Lesser General Public
17
 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18
 */
19
20
/*
21
 * Modified by the GLib Team and others 1997-2000.  See the AUTHORS
22
 * file for a list of people on the GLib Team.  See the ChangeLog
23
 * files for a list of changes.  These files are distributed with
24
 * GLib at ftp://ftp.gtk.org/pub/gtk/.
25
 */
26
27
#ifndef __G_STRFUNCS_H__
28
#define __G_STRFUNCS_H__
29
30
#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION)
31
#error "Only <glib.h> can be included directly."
32
#endif
33
34
#include <stdarg.h>
35
#include <string.h>
36
37
#include <glib/gmacros.h>
38
#include <glib/gtypes.h>
39
#include <glib/gerror.h>
40
#include <glib/gmem.h>
41
42
G_BEGIN_DECLS
43
44
/* Functions like the ones in <ctype.h> that are not affected by locale. */
45
typedef enum {
46
  G_ASCII_ALNUM  = 1 << 0,
47
  G_ASCII_ALPHA  = 1 << 1,
48
  G_ASCII_CNTRL  = 1 << 2,
49
  G_ASCII_DIGIT  = 1 << 3,
50
  G_ASCII_GRAPH  = 1 << 4,
51
  G_ASCII_LOWER  = 1 << 5,
52
  G_ASCII_PRINT  = 1 << 6,
53
  G_ASCII_PUNCT  = 1 << 7,
54
  G_ASCII_SPACE  = 1 << 8,
55
  G_ASCII_UPPER  = 1 << 9,
56
  G_ASCII_XDIGIT = 1 << 10
57
} G_GNUC_FLAG_ENUM GAsciiType;
58
59
GLIB_VAR const guint16 * const g_ascii_table;
60
61
#define g_ascii_isalnum(c) \
62
0
  ((g_ascii_table[(guchar) (c)] & G_ASCII_ALNUM) != 0)
63
64
#define g_ascii_isalpha(c) \
65
154k
  ((g_ascii_table[(guchar) (c)] & G_ASCII_ALPHA) != 0)
66
67
#define g_ascii_iscntrl(c) \
68
  ((g_ascii_table[(guchar) (c)] & G_ASCII_CNTRL) != 0)
69
70
#define g_ascii_isdigit(c) \
71
0
  ((g_ascii_table[(guchar) (c)] & G_ASCII_DIGIT) != 0)
72
73
#define g_ascii_isgraph(c) \
74
  ((g_ascii_table[(guchar) (c)] & G_ASCII_GRAPH) != 0)
75
76
#define g_ascii_islower(c) \
77
  ((g_ascii_table[(guchar) (c)] & G_ASCII_LOWER) != 0)
78
79
#define g_ascii_isprint(c) \
80
  ((g_ascii_table[(guchar) (c)] & G_ASCII_PRINT) != 0)
81
82
#define g_ascii_ispunct(c) \
83
  ((g_ascii_table[(guchar) (c)] & G_ASCII_PUNCT) != 0)
84
85
#define g_ascii_isspace(c) \
86
34.7M
  ((g_ascii_table[(guchar) (c)] & G_ASCII_SPACE) != 0)
87
88
#define g_ascii_isupper(c) \
89
  ((g_ascii_table[(guchar) (c)] & G_ASCII_UPPER) != 0)
90
91
#define g_ascii_isxdigit(c) \
92
60.4k
  ((g_ascii_table[(guchar) (c)] & G_ASCII_XDIGIT) != 0)
93
94
GLIB_AVAILABLE_IN_ALL
95
gchar                 g_ascii_tolower  (gchar        c) G_GNUC_CONST;
96
GLIB_AVAILABLE_IN_ALL
97
gchar                 g_ascii_toupper  (gchar        c) G_GNUC_CONST;
98
99
GLIB_AVAILABLE_IN_ALL
100
gint                  g_ascii_digit_value  (gchar    c) G_GNUC_CONST;
101
GLIB_AVAILABLE_IN_ALL
102
gint                  g_ascii_xdigit_value (gchar    c) G_GNUC_CONST;
103
104
/* String utility functions that modify a string argument or
105
 * return a constant string that must not be freed.
106
 */
107
#define  G_STR_DELIMITERS "_-|> <."
108
GLIB_AVAILABLE_IN_ALL
109
gchar*                g_strdelimit     (gchar      *string,
110
          const gchar  *delimiters,
111
          gchar       new_delimiter);
112
GLIB_AVAILABLE_IN_ALL
113
gchar*                g_strcanon       (gchar        *string,
114
          const gchar  *valid_chars,
115
          gchar         substitutor);
116
GLIB_AVAILABLE_IN_ALL
117
const gchar *         g_strerror       (gint        errnum) G_GNUC_CONST;
118
GLIB_AVAILABLE_IN_ALL
119
const gchar *         g_strsignal      (gint        signum) G_GNUC_CONST;
120
GLIB_AVAILABLE_IN_ALL
121
gchar *               g_strreverse     (gchar      *string);
122
GLIB_AVAILABLE_IN_ALL
123
gsize               g_strlcpy        (gchar      *dest,
124
          const gchar  *src,
125
          gsize         dest_size);
126
GLIB_AVAILABLE_IN_ALL
127
gsize               g_strlcat        (gchar      *dest,
128
          const gchar  *src,
129
          gsize         dest_size);
130
GLIB_AVAILABLE_IN_ALL
131
gchar *               g_strstr_len     (const gchar  *haystack,
132
          gssize        haystack_len,
133
          const gchar  *needle);
134
GLIB_AVAILABLE_IN_ALL
135
gchar *               g_strrstr        (const gchar  *haystack,
136
          const gchar  *needle);
137
GLIB_AVAILABLE_IN_ALL
138
gchar *               g_strrstr_len    (const gchar  *haystack,
139
          gssize        haystack_len,
140
          const gchar  *needle);
141
142
GLIB_AVAILABLE_IN_ALL
143
gboolean             (g_str_has_suffix) (const gchar *str,
144
                                         const gchar *suffix);
145
GLIB_AVAILABLE_IN_ALL
146
gboolean             (g_str_has_prefix) (const gchar *str,
147
                                         const gchar *prefix);
148
149
#if G_GNUC_CHECK_VERSION (2, 0)
150
#ifndef __GTK_DOC_IGNORE__
151
#ifndef __GI_SCANNER__
152
153
/* This macro is defeat a false -Wnonnull warning in GCC.
154
 * Without it, it thinks strlen and memcmp may be getting passed NULL
155
 * despite the explicit check for NULL right above the calls.
156
 */
157
0
#define _G_STR_NONNULL(x) ((x) + !(x))
158
159
#define g_str_has_prefix(STR, PREFIX)                                         \
160
0
  (__builtin_constant_p (PREFIX)?                                             \
161
0
    G_GNUC_EXTENSION ({                                                       \
162
0
       const char * const __str = (STR);                                      \
163
0
       const char * const __prefix = (PREFIX);                                \
164
0
       gboolean __result = FALSE;                                             \
165
0
                                                                              \
166
0
       if G_UNLIKELY (__str == NULL || __prefix == NULL)                      \
167
0
           __result = (g_str_has_prefix) (__str, __prefix);                   \
168
0
       else                                                                   \
169
0
         {                                                                    \
170
0
            const size_t __str_len = strlen (_G_STR_NONNULL (__str));         \
171
0
            const size_t __prefix_len = strlen (_G_STR_NONNULL (__prefix));   \
172
0
            if (__str_len >= __prefix_len)                                    \
173
0
              __result = memcmp (_G_STR_NONNULL (__str),                      \
174
0
                                 _G_STR_NONNULL (__prefix),                   \
175
0
                                 __prefix_len) == 0;                          \
176
0
         }                                                                    \
177
0
         __result;                                                            \
178
0
    })                                                                        \
179
0
  :                                                                           \
180
0
    (g_str_has_prefix) (STR, PREFIX)                                          \
181
0
  )
182
183
#define g_str_has_suffix(STR, SUFFIX)                                         \
184
0
  (__builtin_constant_p (SUFFIX)?                                             \
185
0
    G_GNUC_EXTENSION ({                                                       \
186
0
       const char * const __str = (STR);                                      \
187
0
       const char * const __suffix = (SUFFIX);                                \
188
0
       gboolean __result = FALSE;                                             \
189
0
                                                                              \
190
0
       if G_UNLIKELY (__str == NULL || __suffix == NULL)                      \
191
0
         __result = (g_str_has_suffix) (__str, __suffix);                     \
192
0
       else                                                                   \
193
0
         {                                                                    \
194
0
            const size_t __str_len = strlen (_G_STR_NONNULL (__str));         \
195
0
            const size_t __suffix_len = strlen (_G_STR_NONNULL (__suffix));   \
196
0
            if (__str_len >= __suffix_len)                                    \
197
0
              __result = memcmp (__str + __str_len - __suffix_len,            \
198
0
                                 _G_STR_NONNULL (__suffix),                   \
199
0
                                 __suffix_len) == 0;                          \
200
0
         }                                                                    \
201
0
         __result;                                                            \
202
0
    })                                                                        \
203
0
  :                                                                           \
204
0
    (g_str_has_suffix) (STR, SUFFIX)                                          \
205
0
  )
206
207
#endif /* !defined (__GI_SCANNER__) */
208
#endif /* !defined (__GTK_DOC_IGNORE__) */
209
#endif /* G_GNUC_CHECK_VERSION (2, 0) */
210
211
/* String to/from double conversion functions */
212
213
GLIB_AVAILABLE_IN_ALL
214
gdouble               g_strtod         (const gchar  *nptr,
215
          gchar     **endptr);
216
GLIB_AVAILABLE_IN_ALL
217
gdouble               g_ascii_strtod   (const gchar  *nptr,
218
          gchar     **endptr);
219
GLIB_AVAILABLE_IN_ALL
220
guint64         g_ascii_strtoull (const gchar *nptr,
221
          gchar      **endptr,
222
          guint        base);
223
GLIB_AVAILABLE_IN_ALL
224
gint64          g_ascii_strtoll  (const gchar *nptr,
225
          gchar      **endptr,
226
          guint        base);
227
/* 29 bytes should enough for all possible values that
228
 * g_ascii_dtostr can produce.
229
 * Then add 10 for good measure */
230
#define G_ASCII_DTOSTR_BUF_SIZE (29 + 10)
231
GLIB_AVAILABLE_IN_ALL
232
gchar *               g_ascii_dtostr   (gchar        *buffer,
233
          gint          buf_len,
234
          gdouble       d);
235
GLIB_AVAILABLE_IN_ALL
236
gchar *               g_ascii_formatd  (gchar        *buffer,
237
          gint          buf_len,
238
          const gchar  *format,
239
          gdouble       d);
240
241
/* removes leading spaces */
242
GLIB_AVAILABLE_IN_ALL
243
gchar*                g_strchug        (gchar        *string);
244
/* removes trailing spaces */
245
GLIB_AVAILABLE_IN_ALL
246
gchar*                g_strchomp       (gchar        *string);
247
/* removes leading & trailing spaces */
248
1.89M
#define g_strstrip( string )  g_strchomp (g_strchug (string))
249
250
GLIB_AVAILABLE_IN_ALL
251
gint                  g_ascii_strcasecmp  (const gchar *s1,
252
             const gchar *s2);
253
GLIB_AVAILABLE_IN_ALL
254
gint                  g_ascii_strncasecmp (const gchar *s1,
255
             const gchar *s2,
256
             gsize        n);
257
GLIB_AVAILABLE_IN_ALL
258
gchar*                g_ascii_strdown     (const gchar *str,
259
             gssize       len) G_GNUC_MALLOC;
260
GLIB_AVAILABLE_IN_ALL
261
gchar*                g_ascii_strup       (const gchar *str,
262
             gssize       len) G_GNUC_MALLOC;
263
264
GLIB_AVAILABLE_IN_2_40
265
gboolean              g_str_is_ascii      (const gchar *str);
266
267
GLIB_DEPRECATED
268
gint                  g_strcasecmp     (const gchar *s1,
269
                                        const gchar *s2);
270
GLIB_DEPRECATED
271
gint                  g_strncasecmp    (const gchar *s1,
272
                                        const gchar *s2,
273
                                        guint        n);
274
GLIB_DEPRECATED
275
gchar*                g_strdown        (gchar       *string);
276
GLIB_DEPRECATED
277
gchar*                g_strup          (gchar       *string);
278
279
280
/* String utility functions that return a newly allocated string which
281
 * ought to be freed with g_free from the caller at some point.
282
 */
283
GLIB_AVAILABLE_IN_ALL
284
gchar*               (g_strdup)        (const gchar *str) G_GNUC_MALLOC;
285
GLIB_AVAILABLE_IN_ALL
286
gchar*                g_strdup_printf  (const gchar *format,
287
          ...) G_GNUC_PRINTF (1, 2) G_GNUC_MALLOC;
288
GLIB_AVAILABLE_IN_ALL
289
gchar*                g_strdup_vprintf (const gchar *format,
290
          va_list      args) G_GNUC_PRINTF(1, 0) G_GNUC_MALLOC;
291
GLIB_AVAILABLE_IN_ALL
292
gchar*                g_strndup        (const gchar *str,
293
          gsize        n) G_GNUC_MALLOC;  
294
GLIB_AVAILABLE_IN_ALL
295
gchar*                g_strnfill       (gsize        length,  
296
          gchar        fill_char) G_GNUC_MALLOC;
297
GLIB_AVAILABLE_IN_ALL
298
gchar*                g_strconcat      (const gchar *string1,
299
          ...) G_GNUC_MALLOC G_GNUC_NULL_TERMINATED;
300
GLIB_AVAILABLE_IN_ALL
301
gchar*                g_strjoin        (const gchar  *separator,
302
          ...) G_GNUC_MALLOC G_GNUC_NULL_TERMINATED;
303
304
#if G_GNUC_CHECK_VERSION(2, 0)
305
#ifndef __GTK_DOC_IGNORE__
306
#ifndef __GI_SCANNER__
307
308
G_ALWAYS_INLINE static inline char *
309
g_strdup_inline (const char *str)
310
93.0k
{
311
93.0k
  if (__builtin_constant_p (!str) && !str)
312
2.89k
    return NULL;
313
314
90.2k
  if (__builtin_constant_p (!!str) && !!str && __builtin_constant_p (strlen (str)))
315
0
    {
316
0
      const size_t len = strlen (str) + 1;
317
0
      char *dup_str = (char *) g_malloc (len);
318
0
      return (char *) memcpy (dup_str, str, len);
319
0
    }
320
321
90.2k
  return g_strdup (str);
322
90.2k
}
Unexecuted instantiation: caps.c:g_strdup_inline
Unexecuted instantiation: iq.c:g_strdup_inline
Unexecuted instantiation: jabber.c:g_strdup_inline
Unexecuted instantiation: jingle.c:g_strdup_inline
Unexecuted instantiation: content.c:g_strdup_inline
Unexecuted instantiation: iceudp.c:g_strdup_inline
Unexecuted instantiation: rawudp.c:g_strdup_inline
Unexecuted instantiation: session.c:g_strdup_inline
Unexecuted instantiation: transport.c:g_strdup_inline
Unexecuted instantiation: jutil.c:g_strdup_inline
Unexecuted instantiation: message.c:g_strdup_inline
Unexecuted instantiation: oob.c:g_strdup_inline
Unexecuted instantiation: parser.c:g_strdup_inline
Unexecuted instantiation: pep.c:g_strdup_inline
Unexecuted instantiation: ping.c:g_strdup_inline
Unexecuted instantiation: presence.c:g_strdup_inline
Unexecuted instantiation: roster.c:g_strdup_inline
Unexecuted instantiation: si.c:g_strdup_inline
Unexecuted instantiation: stream_management.c:g_strdup_inline
Unexecuted instantiation: useravatar.c:g_strdup_inline
Unexecuted instantiation: usermood.c:g_strdup_inline
Unexecuted instantiation: usernick.c:g_strdup_inline
Unexecuted instantiation: usertune.c:g_strdup_inline
Unexecuted instantiation: xdata.c:g_strdup_inline
Unexecuted instantiation: adhoccommands.c:g_strdup_inline
Unexecuted instantiation: auth.c:g_strdup_inline
Unexecuted instantiation: auth_digest_md5.c:g_strdup_inline
Unexecuted instantiation: auth_plain.c:g_strdup_inline
Unexecuted instantiation: auth_scram.c:g_strdup_inline
Unexecuted instantiation: buddy.c:g_strdup_inline
Unexecuted instantiation: bosh.c:g_strdup_inline
Unexecuted instantiation: chat.c:g_strdup_inline
Unexecuted instantiation: data.c:g_strdup_inline
Unexecuted instantiation: disco.c:g_strdup_inline
Unexecuted instantiation: gmail.c:g_strdup_inline
Unexecuted instantiation: google.c:g_strdup_inline
Unexecuted instantiation: google_presence.c:g_strdup_inline
Unexecuted instantiation: google_roster.c:g_strdup_inline
Unexecuted instantiation: jingleinfo.c:g_strdup_inline
Unexecuted instantiation: ibb.c:g_strdup_inline
Unexecuted instantiation: account.c:g_strdup_inline
Unexecuted instantiation: blist.c:g_strdup_inline
Unexecuted instantiation: buddyicon.c:g_strdup_inline
Unexecuted instantiation: cipher.c:g_strdup_inline
Unexecuted instantiation: circbuffer.c:g_strdup_inline
Unexecuted instantiation: cmds.c:g_strdup_inline
Unexecuted instantiation: connection.c:g_strdup_inline
Unexecuted instantiation: conversation.c:g_strdup_inline
Unexecuted instantiation: core.c:g_strdup_inline
Unexecuted instantiation: debug.c:g_strdup_inline
Unexecuted instantiation: eventloop.c:g_strdup_inline
Unexecuted instantiation: ft.c:g_strdup_inline
Unexecuted instantiation: idle.c:g_strdup_inline
Unexecuted instantiation: imgstore.c:g_strdup_inline
Unexecuted instantiation: log.c:g_strdup_inline
Unexecuted instantiation: network.c:g_strdup_inline
Unexecuted instantiation: notify.c:g_strdup_inline
Unexecuted instantiation: plugin.c:g_strdup_inline
Unexecuted instantiation: pounce.c:g_strdup_inline
Unexecuted instantiation: prefs.c:g_strdup_inline
Unexecuted instantiation: privacy.c:g_strdup_inline
Unexecuted instantiation: proxy.c:g_strdup_inline
Unexecuted instantiation: prpl.c:g_strdup_inline
Unexecuted instantiation: request.c:g_strdup_inline
Unexecuted instantiation: roomlist.c:g_strdup_inline
Unexecuted instantiation: savedstatuses.c:g_strdup_inline
Unexecuted instantiation: server.c:g_strdup_inline
Unexecuted instantiation: signals.c:g_strdup_inline
Unexecuted instantiation: smiley.c:g_strdup_inline
Unexecuted instantiation: dnsquery.c:g_strdup_inline
Unexecuted instantiation: dnssrv.c:g_strdup_inline
Unexecuted instantiation: status.c:g_strdup_inline
Unexecuted instantiation: stringref.c:g_strdup_inline
Unexecuted instantiation: stun.c:g_strdup_inline
Unexecuted instantiation: sound.c:g_strdup_inline
Unexecuted instantiation: sound-theme-loader.c:g_strdup_inline
Unexecuted instantiation: sslconn.c:g_strdup_inline
Unexecuted instantiation: theme-loader.c:g_strdup_inline
Unexecuted instantiation: theme-manager.c:g_strdup_inline
Unexecuted instantiation: upnp.c:g_strdup_inline
util.c:g_strdup_inline
Line
Count
Source
310
1.25k
{
311
1.25k
  if (__builtin_constant_p (!str) && !str)
312
0
    return NULL;
313
314
1.25k
  if (__builtin_constant_p (!!str) && !!str && __builtin_constant_p (strlen (str)))
315
0
    {
316
0
      const size_t len = strlen (str) + 1;
317
0
      char *dup_str = (char *) g_malloc (len);
318
0
      return (char *) memcpy (dup_str, str, len);
319
0
    }
320
321
1.25k
  return g_strdup (str);
322
1.25k
}
Unexecuted instantiation: value.c:g_strdup_inline
xmlnode.c:g_strdup_inline
Line
Count
Source
310
91.8k
{
311
91.8k
  if (__builtin_constant_p (!str) && !str)
312
2.89k
    return NULL;
313
314
88.9k
  if (__builtin_constant_p (!!str) && !!str && __builtin_constant_p (strlen (str)))
315
0
    {
316
0
      const size_t len = strlen (str) + 1;
317
0
      char *dup_str = (char *) g_malloc (len);
318
0
      return (char *) memcpy (dup_str, str, len);
319
0
    }
320
321
88.9k
  return g_strdup (str);
322
88.9k
}
Unexecuted instantiation: des.c:g_strdup_inline
Unexecuted instantiation: hmac.c:g_strdup_inline
Unexecuted instantiation: md4.c:g_strdup_inline
Unexecuted instantiation: rc4.c:g_strdup_inline
Unexecuted instantiation: accountopt.c:g_strdup_inline
Unexecuted instantiation: certificate.c:g_strdup_inline
Unexecuted instantiation: nat-pmp.c:g_strdup_inline
Unexecuted instantiation: ntlm.c:g_strdup_inline
Unexecuted instantiation: sound-theme.c:g_strdup_inline
Unexecuted instantiation: theme.c:g_strdup_inline
323
324
93.0k
#define g_strdup(x) g_strdup_inline (x)
325
326
#endif /* !defined (__GI_SCANNER__) */
327
#endif /* !defined (__GTK_DOC_IGNORE__) */
328
#endif /* G_GNUC_CHECK_VERSION (2, 0) */
329
330
GLIB_AVAILABLE_IN_ALL
331
gchar*                g_strcompress    (const gchar *source) G_GNUC_MALLOC;
332
333
GLIB_AVAILABLE_IN_ALL
334
gchar*                g_strescape      (const gchar *source,
335
          const gchar *exceptions) G_GNUC_MALLOC;
336
337
GLIB_DEPRECATED_IN_2_68_FOR (g_memdup2)
338
gpointer              g_memdup         (gconstpointer mem,
339
                                        guint         byte_size) G_GNUC_ALLOC_SIZE(2);
340
341
GLIB_AVAILABLE_IN_2_68
342
gpointer              g_memdup2        (gconstpointer mem,
343
                                        gsize         byte_size) G_GNUC_ALLOC_SIZE(2);
344
345
/* NULL terminated string arrays.
346
 * g_strsplit(), g_strsplit_set() split up string into max_tokens tokens
347
 * at delim and return a newly allocated string array.
348
 * g_strjoinv() concatenates all of str_array's strings, sliding in an
349
 * optional separator, the returned string is newly allocated.
350
 * g_strfreev() frees the array itself and all of its strings.
351
 * g_strdupv() copies a NULL-terminated array of strings
352
 * g_strv_length() returns the length of a NULL-terminated array of strings
353
 */
354
typedef gchar** GStrv;
355
GLIB_AVAILABLE_IN_ALL
356
gchar**               g_strsplit       (const gchar  *string,
357
          const gchar  *delimiter,
358
          gint          max_tokens);
359
GLIB_AVAILABLE_IN_ALL
360
gchar **        g_strsplit_set   (const gchar *string,
361
          const gchar *delimiters,
362
          gint         max_tokens);
363
GLIB_AVAILABLE_IN_ALL
364
gchar*                g_strjoinv       (const gchar  *separator,
365
          gchar       **str_array) G_GNUC_MALLOC;
366
GLIB_AVAILABLE_IN_ALL
367
void                  g_strfreev       (gchar       **str_array);
368
GLIB_AVAILABLE_IN_ALL
369
gchar**               g_strdupv        (gchar       **str_array);
370
GLIB_AVAILABLE_IN_ALL
371
guint                 g_strv_length    (gchar       **str_array);
372
373
GLIB_AVAILABLE_IN_ALL
374
gchar*                g_stpcpy         (gchar        *dest,
375
                                        const char   *src);
376
377
GLIB_AVAILABLE_IN_2_40
378
gchar *                 g_str_to_ascii                                  (const gchar   *str,
379
                                                                         const gchar   *from_locale);
380
381
GLIB_AVAILABLE_IN_2_40
382
gchar **                g_str_tokenize_and_fold                         (const gchar   *string,
383
                                                                         const gchar   *translit_locale,
384
                                                                         gchar       ***ascii_alternates);
385
386
GLIB_AVAILABLE_IN_2_40
387
gboolean                g_str_match_string                              (const gchar   *search_term,
388
                                                                         const gchar   *potential_hit,
389
                                                                         gboolean       accept_alternates);
390
391
GLIB_AVAILABLE_IN_2_44
392
gboolean              g_strv_contains  (const gchar * const *strv,
393
                                        const gchar         *str);
394
395
GLIB_AVAILABLE_IN_2_60
396
gboolean              g_strv_equal     (const gchar * const *strv1,
397
                                        const gchar * const *strv2);
398
399
/* Convenience ASCII string to number API */
400
401
/**
402
 * GNumberParserError:
403
 * @G_NUMBER_PARSER_ERROR_INVALID: string was not a valid number
404
 * @G_NUMBER_PARSER_ERROR_OUT_OF_BOUNDS: string was a number, but out of bounds
405
 *
406
 * Error codes returned by functions converting a string to a number.
407
 *
408
 * Since: 2.54
409
 */
410
typedef enum
411
  {
412
    G_NUMBER_PARSER_ERROR_INVALID,
413
    G_NUMBER_PARSER_ERROR_OUT_OF_BOUNDS,
414
  } GNumberParserError;
415
416
/**
417
 * G_NUMBER_PARSER_ERROR:
418
 *
419
 * Domain for errors returned by functions converting a string to a
420
 * number.
421
 *
422
 * Since: 2.54
423
 */
424
#define G_NUMBER_PARSER_ERROR (g_number_parser_error_quark ())
425
426
GLIB_AVAILABLE_IN_2_54
427
GQuark                g_number_parser_error_quark  (void);
428
429
GLIB_AVAILABLE_IN_2_54
430
gboolean              g_ascii_string_to_signed     (const gchar  *str,
431
                                                    guint         base,
432
                                                    gint64        min,
433
                                                    gint64        max,
434
                                                    gint64       *out_num,
435
                                                    GError      **error);
436
437
GLIB_AVAILABLE_IN_2_54
438
gboolean              g_ascii_string_to_unsigned   (const gchar  *str,
439
                                                    guint         base,
440
                                                    guint64       min,
441
                                                    guint64       max,
442
                                                    guint64      *out_num,
443
                                                    GError      **error);
444
445
/**
446
 * g_set_str: (skip)
447
 * @str_pointer: (inout) (not optional) (nullable): a pointer to either
448
 *   a string or `NULL`
449
 * @new_str: (nullable): a string to assign to @str_pointer
450
 *
451
 * Updates a pointer to a string to a copy of @new_str and returns whether the
452
 * string was changed.
453
 *
454
 * If @new_str matches the previous string, this function is a no-op. If
455
 * @new_str is different, a copy of it will be assigned to @str_pointer and
456
 * the previous string pointed to by @str_pointer will be freed with
457
 * [func@GLib.free].
458
 *
459
 * @str_pointer must not be `NULL`, but can point to a `NULL` value.
460
 *
461
 * One convenient usage of this function is in implementing property settings:
462
 * ```C
463
 * void
464
 * foo_set_bar (Foo        *foo,
465
 *              const char *new_bar)
466
 * {
467
 *   g_return_if_fail (IS_FOO (foo));
468
 *
469
 *   if (g_set_str (&foo->bar, new_bar))
470
 *     g_object_notify (foo, "bar");
471
 * }
472
 * ```
473
 *
474
 * See also [func@GLib.set_str_take] for a version of this which steals
475
 * ownership of @new_str.
476
 *
477
 * Returns: true if the value of @str_pointer changed, false otherwise
478
 *
479
 * Since: 2.76
480
 */
481
GLIB_AVAILABLE_STATIC_INLINE_IN_2_76
482
static inline gboolean g_set_str (char       **str_pointer,
483
                                  const char  *new_str);
484
485
GLIB_AVAILABLE_STATIC_INLINE_IN_2_76
486
static inline gboolean
487
g_set_str (char       **str_pointer,
488
           const char  *new_str)
489
0
{
490
0
  char *copy;
491
0
492
0
  if (*str_pointer == new_str ||
493
0
      (*str_pointer && new_str && strcmp (*str_pointer, new_str) == 0))
494
0
    return FALSE;
495
0
496
0
  copy = g_strdup (new_str);
497
0
  g_free (*str_pointer);
498
0
  *str_pointer = copy;
499
0
500
0
  return TRUE;
501
0
}
Unexecuted instantiation: caps.c:g_set_str
Unexecuted instantiation: iq.c:g_set_str
Unexecuted instantiation: jabber.c:g_set_str
Unexecuted instantiation: jingle.c:g_set_str
Unexecuted instantiation: content.c:g_set_str
Unexecuted instantiation: iceudp.c:g_set_str
Unexecuted instantiation: rawudp.c:g_set_str
Unexecuted instantiation: session.c:g_set_str
Unexecuted instantiation: transport.c:g_set_str
Unexecuted instantiation: jutil.c:g_set_str
Unexecuted instantiation: message.c:g_set_str
Unexecuted instantiation: oob.c:g_set_str
Unexecuted instantiation: parser.c:g_set_str
Unexecuted instantiation: pep.c:g_set_str
Unexecuted instantiation: ping.c:g_set_str
Unexecuted instantiation: presence.c:g_set_str
Unexecuted instantiation: roster.c:g_set_str
Unexecuted instantiation: si.c:g_set_str
Unexecuted instantiation: stream_management.c:g_set_str
Unexecuted instantiation: useravatar.c:g_set_str
Unexecuted instantiation: usermood.c:g_set_str
Unexecuted instantiation: usernick.c:g_set_str
Unexecuted instantiation: usertune.c:g_set_str
Unexecuted instantiation: xdata.c:g_set_str
Unexecuted instantiation: adhoccommands.c:g_set_str
Unexecuted instantiation: auth.c:g_set_str
Unexecuted instantiation: auth_digest_md5.c:g_set_str
Unexecuted instantiation: auth_plain.c:g_set_str
Unexecuted instantiation: auth_scram.c:g_set_str
Unexecuted instantiation: buddy.c:g_set_str
Unexecuted instantiation: bosh.c:g_set_str
Unexecuted instantiation: chat.c:g_set_str
Unexecuted instantiation: data.c:g_set_str
Unexecuted instantiation: disco.c:g_set_str
Unexecuted instantiation: gmail.c:g_set_str
Unexecuted instantiation: google.c:g_set_str
Unexecuted instantiation: google_presence.c:g_set_str
Unexecuted instantiation: google_roster.c:g_set_str
Unexecuted instantiation: jingleinfo.c:g_set_str
Unexecuted instantiation: ibb.c:g_set_str
Unexecuted instantiation: account.c:g_set_str
Unexecuted instantiation: blist.c:g_set_str
Unexecuted instantiation: buddyicon.c:g_set_str
Unexecuted instantiation: cipher.c:g_set_str
Unexecuted instantiation: circbuffer.c:g_set_str
Unexecuted instantiation: cmds.c:g_set_str
Unexecuted instantiation: connection.c:g_set_str
Unexecuted instantiation: conversation.c:g_set_str
Unexecuted instantiation: core.c:g_set_str
Unexecuted instantiation: debug.c:g_set_str
Unexecuted instantiation: eventloop.c:g_set_str
Unexecuted instantiation: ft.c:g_set_str
Unexecuted instantiation: idle.c:g_set_str
Unexecuted instantiation: imgstore.c:g_set_str
Unexecuted instantiation: log.c:g_set_str
Unexecuted instantiation: network.c:g_set_str
Unexecuted instantiation: notify.c:g_set_str
Unexecuted instantiation: plugin.c:g_set_str
Unexecuted instantiation: pounce.c:g_set_str
Unexecuted instantiation: prefs.c:g_set_str
Unexecuted instantiation: privacy.c:g_set_str
Unexecuted instantiation: proxy.c:g_set_str
Unexecuted instantiation: prpl.c:g_set_str
Unexecuted instantiation: request.c:g_set_str
Unexecuted instantiation: roomlist.c:g_set_str
Unexecuted instantiation: savedstatuses.c:g_set_str
Unexecuted instantiation: server.c:g_set_str
Unexecuted instantiation: signals.c:g_set_str
Unexecuted instantiation: smiley.c:g_set_str
Unexecuted instantiation: dnsquery.c:g_set_str
Unexecuted instantiation: dnssrv.c:g_set_str
Unexecuted instantiation: status.c:g_set_str
Unexecuted instantiation: stringref.c:g_set_str
Unexecuted instantiation: stun.c:g_set_str
Unexecuted instantiation: sound.c:g_set_str
Unexecuted instantiation: sound-theme-loader.c:g_set_str
Unexecuted instantiation: sslconn.c:g_set_str
Unexecuted instantiation: theme-loader.c:g_set_str
Unexecuted instantiation: theme-manager.c:g_set_str
Unexecuted instantiation: upnp.c:g_set_str
Unexecuted instantiation: util.c:g_set_str
Unexecuted instantiation: value.c:g_set_str
Unexecuted instantiation: xmlnode.c:g_set_str
Unexecuted instantiation: des.c:g_set_str
Unexecuted instantiation: gchecksum.c:g_set_str
Unexecuted instantiation: hmac.c:g_set_str
Unexecuted instantiation: md4.c:g_set_str
Unexecuted instantiation: rc4.c:g_set_str
Unexecuted instantiation: accountopt.c:g_set_str
Unexecuted instantiation: certificate.c:g_set_str
Unexecuted instantiation: nat-pmp.c:g_set_str
Unexecuted instantiation: ntlm.c:g_set_str
Unexecuted instantiation: sound-theme.c:g_set_str
Unexecuted instantiation: theme.c:g_set_str
502
503
/**
504
 * g_set_str_take: (skip)
505
 * @str_pointer: (inout) (not optional) (nullable): a pointer to either
506
 *   a string or `NULL`
507
 * @new_str: (transfer full) (nullable): a string to assign to @str_pointer
508
 *
509
 * Updates a pointer to a string to @new_str and returns whether the
510
 * string was changed. Steals ownership of @new_str.
511
 *
512
 * If @new_str matches the previous string, this function will free @new_str and
513
 * leave @str_pointer unchanged. If @new_str is different, it will be assigned
514
 * to @str_pointer and the previous string pointed to by @str_pointer will be
515
 * freed with [func@GLib.free].
516
 *
517
 * @str_pointer must not be `NULL`, but can point to a `NULL` value.
518
 *
519
 * One convenient usage of this function is in implementing property settings:
520
 * ```C
521
 * void
522
 * foo_set_bar (Foo        *foo,
523
 *              const char *new_bar)
524
 * {
525
 *   g_autofree computed_new_bar = NULL;
526
 *
527
 *   g_return_if_fail (IS_FOO (foo));
528
 *
529
 *   computed_new_bar = g_strconcat (new_bar, "some-suffix", NULL);
530
 *
531
 *   if (g_set_str_take (&foo->bar, g_steal_pointer (&computed_new_bar)))
532
 *     g_object_notify (foo, "bar");
533
 * }
534
 * ```
535
 *
536
 * See also [func@GLib.set_str] for a version of this which takes a copy of
537
 * @new_str.
538
 *
539
 * Returns: true if the value of @str_pointer changed, false otherwise
540
 *
541
 * Since: 2.90
542
 */
543
GLIB_AVAILABLE_STATIC_INLINE_IN_2_90
544
static inline gboolean g_set_str_take (char **str_pointer,
545
                                       char  *new_str);
546
547
GLIB_AVAILABLE_STATIC_INLINE_IN_2_90
548
static inline gboolean
549
g_set_str_take (char **str_pointer,
550
                char  *new_str)
551
0
{
552
0
  /* You could pass the value of `*str_pointer` in to this function, but you
553
0
   * really should do it using g_steal_pointer() to document the ownership
554
0
   * transfer. */
555
0
  if (*str_pointer == new_str)
556
0
    return FALSE;
557
0
558
0
  if (*str_pointer != NULL &&
559
0
      new_str != NULL &&
560
0
      strcmp (*str_pointer, new_str) == 0)
561
0
    {
562
0
      g_free (new_str);
563
0
      return FALSE;
564
0
    }
565
0
566
0
  g_free (*str_pointer);
567
0
  *str_pointer = new_str;
568
0
  new_str = NULL;  /* stolen */
569
0
570
0
  return TRUE;
571
0
}
Unexecuted instantiation: caps.c:g_set_str_take
Unexecuted instantiation: iq.c:g_set_str_take
Unexecuted instantiation: jabber.c:g_set_str_take
Unexecuted instantiation: jingle.c:g_set_str_take
Unexecuted instantiation: content.c:g_set_str_take
Unexecuted instantiation: iceudp.c:g_set_str_take
Unexecuted instantiation: rawudp.c:g_set_str_take
Unexecuted instantiation: session.c:g_set_str_take
Unexecuted instantiation: transport.c:g_set_str_take
Unexecuted instantiation: jutil.c:g_set_str_take
Unexecuted instantiation: message.c:g_set_str_take
Unexecuted instantiation: oob.c:g_set_str_take
Unexecuted instantiation: parser.c:g_set_str_take
Unexecuted instantiation: pep.c:g_set_str_take
Unexecuted instantiation: ping.c:g_set_str_take
Unexecuted instantiation: presence.c:g_set_str_take
Unexecuted instantiation: roster.c:g_set_str_take
Unexecuted instantiation: si.c:g_set_str_take
Unexecuted instantiation: stream_management.c:g_set_str_take
Unexecuted instantiation: useravatar.c:g_set_str_take
Unexecuted instantiation: usermood.c:g_set_str_take
Unexecuted instantiation: usernick.c:g_set_str_take
Unexecuted instantiation: usertune.c:g_set_str_take
Unexecuted instantiation: xdata.c:g_set_str_take
Unexecuted instantiation: adhoccommands.c:g_set_str_take
Unexecuted instantiation: auth.c:g_set_str_take
Unexecuted instantiation: auth_digest_md5.c:g_set_str_take
Unexecuted instantiation: auth_plain.c:g_set_str_take
Unexecuted instantiation: auth_scram.c:g_set_str_take
Unexecuted instantiation: buddy.c:g_set_str_take
Unexecuted instantiation: bosh.c:g_set_str_take
Unexecuted instantiation: chat.c:g_set_str_take
Unexecuted instantiation: data.c:g_set_str_take
Unexecuted instantiation: disco.c:g_set_str_take
Unexecuted instantiation: gmail.c:g_set_str_take
Unexecuted instantiation: google.c:g_set_str_take
Unexecuted instantiation: google_presence.c:g_set_str_take
Unexecuted instantiation: google_roster.c:g_set_str_take
Unexecuted instantiation: jingleinfo.c:g_set_str_take
Unexecuted instantiation: ibb.c:g_set_str_take
Unexecuted instantiation: account.c:g_set_str_take
Unexecuted instantiation: blist.c:g_set_str_take
Unexecuted instantiation: buddyicon.c:g_set_str_take
Unexecuted instantiation: cipher.c:g_set_str_take
Unexecuted instantiation: circbuffer.c:g_set_str_take
Unexecuted instantiation: cmds.c:g_set_str_take
Unexecuted instantiation: connection.c:g_set_str_take
Unexecuted instantiation: conversation.c:g_set_str_take
Unexecuted instantiation: core.c:g_set_str_take
Unexecuted instantiation: debug.c:g_set_str_take
Unexecuted instantiation: eventloop.c:g_set_str_take
Unexecuted instantiation: ft.c:g_set_str_take
Unexecuted instantiation: idle.c:g_set_str_take
Unexecuted instantiation: imgstore.c:g_set_str_take
Unexecuted instantiation: log.c:g_set_str_take
Unexecuted instantiation: network.c:g_set_str_take
Unexecuted instantiation: notify.c:g_set_str_take
Unexecuted instantiation: plugin.c:g_set_str_take
Unexecuted instantiation: pounce.c:g_set_str_take
Unexecuted instantiation: prefs.c:g_set_str_take
Unexecuted instantiation: privacy.c:g_set_str_take
Unexecuted instantiation: proxy.c:g_set_str_take
Unexecuted instantiation: prpl.c:g_set_str_take
Unexecuted instantiation: request.c:g_set_str_take
Unexecuted instantiation: roomlist.c:g_set_str_take
Unexecuted instantiation: savedstatuses.c:g_set_str_take
Unexecuted instantiation: server.c:g_set_str_take
Unexecuted instantiation: signals.c:g_set_str_take
Unexecuted instantiation: smiley.c:g_set_str_take
Unexecuted instantiation: dnsquery.c:g_set_str_take
Unexecuted instantiation: dnssrv.c:g_set_str_take
Unexecuted instantiation: status.c:g_set_str_take
Unexecuted instantiation: stringref.c:g_set_str_take
Unexecuted instantiation: stun.c:g_set_str_take
Unexecuted instantiation: sound.c:g_set_str_take
Unexecuted instantiation: sound-theme-loader.c:g_set_str_take
Unexecuted instantiation: sslconn.c:g_set_str_take
Unexecuted instantiation: theme-loader.c:g_set_str_take
Unexecuted instantiation: theme-manager.c:g_set_str_take
Unexecuted instantiation: upnp.c:g_set_str_take
Unexecuted instantiation: util.c:g_set_str_take
Unexecuted instantiation: value.c:g_set_str_take
Unexecuted instantiation: xmlnode.c:g_set_str_take
Unexecuted instantiation: des.c:g_set_str_take
Unexecuted instantiation: gchecksum.c:g_set_str_take
Unexecuted instantiation: hmac.c:g_set_str_take
Unexecuted instantiation: md4.c:g_set_str_take
Unexecuted instantiation: rc4.c:g_set_str_take
Unexecuted instantiation: accountopt.c:g_set_str_take
Unexecuted instantiation: certificate.c:g_set_str_take
Unexecuted instantiation: nat-pmp.c:g_set_str_take
Unexecuted instantiation: ntlm.c:g_set_str_take
Unexecuted instantiation: sound-theme.c:g_set_str_take
Unexecuted instantiation: theme.c:g_set_str_take
572
573
/**
574
 * g_set_strv: (skip)
575
 * @strv_pointer: (inout) (not optional) (nullable): a pointer to either
576
 *   a `NULL`-terminated string array or `NULL`
577
 * @new_strv: (nullable): a NULL-terminated string array to assign to
578
 *   @strv_pointer
579
 *
580
 * Safely replaces a string vector.
581
 *
582
 * Updates a pointer to a `NULL`-terminated string array to a copy of @new_strv
583
 * and returns whether the value was changed.
584
 *
585
 * If @new_strv matches the previous array, this function is a no-op. If
586
 * @new_strv is different, a copy of it will be assigned to @strv_pointer and
587
 * the previous array pointed to by @strv_pointer will be freed with
588
 * [func@GLib.strfreev].
589
 *
590
 * The contents of both string arrays are compared for equality before
591
 * replacing the value. In the worst case this requires O(N) time.
592
 *
593
 * This function avoids a potential use-after-free when @new_strv reuses
594
 * pointers from the original string array. This allows callers to build
595
 * a replacement array using existing strings without needing to copy
596
 * them beforehand.
597
 *
598
 * @strv_pointer must not be `NULL`, but can point to a `NULL` value.
599
 *
600
 * Returns: true if the value of @strv_pointer changed, false otherwise
601
 *
602
 * Since: 2.90
603
 */
604
GLIB_AVAILABLE_STATIC_INLINE_IN_2_90
605
static inline gboolean g_set_strv (char               ***strv_pointer,
606
                                   const char * const   *new_strv);
607
608
GLIB_AVAILABLE_STATIC_INLINE_IN_2_90
609
static inline gboolean
610
g_set_strv (char               ***strv_pointer,
611
            const char * const   *new_strv)
612
0
{
613
0
  char **copy;
614
0
615
0
  if ((const char * const *)*strv_pointer == new_strv)
616
0
    return FALSE;
617
0
618
0
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
619
0
  if (*strv_pointer && new_strv &&
620
0
      g_strv_equal ((const char * const *)*strv_pointer, new_strv))
621
0
    return FALSE;
622
0
G_GNUC_END_IGNORE_DEPRECATIONS
623
0
624
0
  copy = g_strdupv ((char **) (guintptr) new_strv);
625
0
  g_strfreev (*strv_pointer);
626
0
  *strv_pointer = copy;
627
0
628
0
  return TRUE;
629
0
}
Unexecuted instantiation: caps.c:g_set_strv
Unexecuted instantiation: iq.c:g_set_strv
Unexecuted instantiation: jabber.c:g_set_strv
Unexecuted instantiation: jingle.c:g_set_strv
Unexecuted instantiation: content.c:g_set_strv
Unexecuted instantiation: iceudp.c:g_set_strv
Unexecuted instantiation: rawudp.c:g_set_strv
Unexecuted instantiation: session.c:g_set_strv
Unexecuted instantiation: transport.c:g_set_strv
Unexecuted instantiation: jutil.c:g_set_strv
Unexecuted instantiation: message.c:g_set_strv
Unexecuted instantiation: oob.c:g_set_strv
Unexecuted instantiation: parser.c:g_set_strv
Unexecuted instantiation: pep.c:g_set_strv
Unexecuted instantiation: ping.c:g_set_strv
Unexecuted instantiation: presence.c:g_set_strv
Unexecuted instantiation: roster.c:g_set_strv
Unexecuted instantiation: si.c:g_set_strv
Unexecuted instantiation: stream_management.c:g_set_strv
Unexecuted instantiation: useravatar.c:g_set_strv
Unexecuted instantiation: usermood.c:g_set_strv
Unexecuted instantiation: usernick.c:g_set_strv
Unexecuted instantiation: usertune.c:g_set_strv
Unexecuted instantiation: xdata.c:g_set_strv
Unexecuted instantiation: adhoccommands.c:g_set_strv
Unexecuted instantiation: auth.c:g_set_strv
Unexecuted instantiation: auth_digest_md5.c:g_set_strv
Unexecuted instantiation: auth_plain.c:g_set_strv
Unexecuted instantiation: auth_scram.c:g_set_strv
Unexecuted instantiation: buddy.c:g_set_strv
Unexecuted instantiation: bosh.c:g_set_strv
Unexecuted instantiation: chat.c:g_set_strv
Unexecuted instantiation: data.c:g_set_strv
Unexecuted instantiation: disco.c:g_set_strv
Unexecuted instantiation: gmail.c:g_set_strv
Unexecuted instantiation: google.c:g_set_strv
Unexecuted instantiation: google_presence.c:g_set_strv
Unexecuted instantiation: google_roster.c:g_set_strv
Unexecuted instantiation: jingleinfo.c:g_set_strv
Unexecuted instantiation: ibb.c:g_set_strv
Unexecuted instantiation: account.c:g_set_strv
Unexecuted instantiation: blist.c:g_set_strv
Unexecuted instantiation: buddyicon.c:g_set_strv
Unexecuted instantiation: cipher.c:g_set_strv
Unexecuted instantiation: circbuffer.c:g_set_strv
Unexecuted instantiation: cmds.c:g_set_strv
Unexecuted instantiation: connection.c:g_set_strv
Unexecuted instantiation: conversation.c:g_set_strv
Unexecuted instantiation: core.c:g_set_strv
Unexecuted instantiation: debug.c:g_set_strv
Unexecuted instantiation: eventloop.c:g_set_strv
Unexecuted instantiation: ft.c:g_set_strv
Unexecuted instantiation: idle.c:g_set_strv
Unexecuted instantiation: imgstore.c:g_set_strv
Unexecuted instantiation: log.c:g_set_strv
Unexecuted instantiation: network.c:g_set_strv
Unexecuted instantiation: notify.c:g_set_strv
Unexecuted instantiation: plugin.c:g_set_strv
Unexecuted instantiation: pounce.c:g_set_strv
Unexecuted instantiation: prefs.c:g_set_strv
Unexecuted instantiation: privacy.c:g_set_strv
Unexecuted instantiation: proxy.c:g_set_strv
Unexecuted instantiation: prpl.c:g_set_strv
Unexecuted instantiation: request.c:g_set_strv
Unexecuted instantiation: roomlist.c:g_set_strv
Unexecuted instantiation: savedstatuses.c:g_set_strv
Unexecuted instantiation: server.c:g_set_strv
Unexecuted instantiation: signals.c:g_set_strv
Unexecuted instantiation: smiley.c:g_set_strv
Unexecuted instantiation: dnsquery.c:g_set_strv
Unexecuted instantiation: dnssrv.c:g_set_strv
Unexecuted instantiation: status.c:g_set_strv
Unexecuted instantiation: stringref.c:g_set_strv
Unexecuted instantiation: stun.c:g_set_strv
Unexecuted instantiation: sound.c:g_set_strv
Unexecuted instantiation: sound-theme-loader.c:g_set_strv
Unexecuted instantiation: sslconn.c:g_set_strv
Unexecuted instantiation: theme-loader.c:g_set_strv
Unexecuted instantiation: theme-manager.c:g_set_strv
Unexecuted instantiation: upnp.c:g_set_strv
Unexecuted instantiation: util.c:g_set_strv
Unexecuted instantiation: value.c:g_set_strv
Unexecuted instantiation: xmlnode.c:g_set_strv
Unexecuted instantiation: des.c:g_set_strv
Unexecuted instantiation: gchecksum.c:g_set_strv
Unexecuted instantiation: hmac.c:g_set_strv
Unexecuted instantiation: md4.c:g_set_strv
Unexecuted instantiation: rc4.c:g_set_strv
Unexecuted instantiation: accountopt.c:g_set_strv
Unexecuted instantiation: certificate.c:g_set_strv
Unexecuted instantiation: nat-pmp.c:g_set_strv
Unexecuted instantiation: ntlm.c:g_set_strv
Unexecuted instantiation: sound-theme.c:g_set_strv
Unexecuted instantiation: theme.c:g_set_strv
630
631
/**
632
 * g_set_strv_take: (skip)
633
 * @strv_pointer: (inout) (not optional) (nullable): a pointer to either
634
 *   a `NULL`-terminated string array or `NULL`
635
 * @new_strv: (transfer full) (nullable): a `NULL`-terminated string array to
636
 *   assign to @strv_pointer
637
 *
638
 * Safely replaces a string vector, taking ownership of the new value.
639
 *
640
 * Updates a pointer to a `NULL`-terminated string array to @new_strv and
641
 * returns whether the value was changed.
642
 *
643
 * If @new_strv contains the same strings as the previous array, this function
644
 * is a no-op. If @new_strv is different, it will be assigned to @strv_pointer
645
 * and the previous array pointed to by @strv_pointer will be freed with
646
 * [func@GLib.strfreev].
647
 *
648
 * If @new_strv does not replace the existing value, it will be freed with
649
 * [func@GLib.strfreev], unless it is `NULL`.
650
 *
651
 * The contents of both string arrays are compared for equality before
652
 * replacing the value. In the worst case this requires O(N) time.
653
 *
654
 * @strv_pointer must not be `NULL`, but can point to a `NULL` value.
655
 * @new_strv must be `NULL` or a string array not already stored in
656
 * @strv_pointer.
657
 *
658
 * Returns: true if the value of @strv_pointer changed, false otherwise
659
 *
660
 * Since: 2.90
661
 */
662
GLIB_AVAILABLE_STATIC_INLINE_IN_2_90
663
static inline gboolean g_set_strv_take (char ***strv_pointer,
664
                                        char  **new_strv);
665
666
GLIB_AVAILABLE_STATIC_INLINE_IN_2_90
667
static inline gboolean
668
g_set_strv_take (char ***strv_pointer,
669
                 char  **new_strv)
670
0
{
671
0
  if (*strv_pointer == NULL && new_strv == NULL)
672
0
    return FALSE;
673
0
674
0
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
675
0
  if (*strv_pointer && new_strv &&
676
0
      g_strv_equal ((const char * const *)*strv_pointer,
677
0
                    (const char * const *)new_strv))
678
0
    {
679
0
      g_strfreev (new_strv);
680
0
      return FALSE;
681
0
    }
682
0
G_GNUC_END_IGNORE_DEPRECATIONS
683
0
684
0
  g_strfreev (*strv_pointer);
685
0
  *strv_pointer = new_strv;
686
0
687
0
  return TRUE;
688
0
}
Unexecuted instantiation: caps.c:g_set_strv_take
Unexecuted instantiation: iq.c:g_set_strv_take
Unexecuted instantiation: jabber.c:g_set_strv_take
Unexecuted instantiation: jingle.c:g_set_strv_take
Unexecuted instantiation: content.c:g_set_strv_take
Unexecuted instantiation: iceudp.c:g_set_strv_take
Unexecuted instantiation: rawudp.c:g_set_strv_take
Unexecuted instantiation: session.c:g_set_strv_take
Unexecuted instantiation: transport.c:g_set_strv_take
Unexecuted instantiation: jutil.c:g_set_strv_take
Unexecuted instantiation: message.c:g_set_strv_take
Unexecuted instantiation: oob.c:g_set_strv_take
Unexecuted instantiation: parser.c:g_set_strv_take
Unexecuted instantiation: pep.c:g_set_strv_take
Unexecuted instantiation: ping.c:g_set_strv_take
Unexecuted instantiation: presence.c:g_set_strv_take
Unexecuted instantiation: roster.c:g_set_strv_take
Unexecuted instantiation: si.c:g_set_strv_take
Unexecuted instantiation: stream_management.c:g_set_strv_take
Unexecuted instantiation: useravatar.c:g_set_strv_take
Unexecuted instantiation: usermood.c:g_set_strv_take
Unexecuted instantiation: usernick.c:g_set_strv_take
Unexecuted instantiation: usertune.c:g_set_strv_take
Unexecuted instantiation: xdata.c:g_set_strv_take
Unexecuted instantiation: adhoccommands.c:g_set_strv_take
Unexecuted instantiation: auth.c:g_set_strv_take
Unexecuted instantiation: auth_digest_md5.c:g_set_strv_take
Unexecuted instantiation: auth_plain.c:g_set_strv_take
Unexecuted instantiation: auth_scram.c:g_set_strv_take
Unexecuted instantiation: buddy.c:g_set_strv_take
Unexecuted instantiation: bosh.c:g_set_strv_take
Unexecuted instantiation: chat.c:g_set_strv_take
Unexecuted instantiation: data.c:g_set_strv_take
Unexecuted instantiation: disco.c:g_set_strv_take
Unexecuted instantiation: gmail.c:g_set_strv_take
Unexecuted instantiation: google.c:g_set_strv_take
Unexecuted instantiation: google_presence.c:g_set_strv_take
Unexecuted instantiation: google_roster.c:g_set_strv_take
Unexecuted instantiation: jingleinfo.c:g_set_strv_take
Unexecuted instantiation: ibb.c:g_set_strv_take
Unexecuted instantiation: account.c:g_set_strv_take
Unexecuted instantiation: blist.c:g_set_strv_take
Unexecuted instantiation: buddyicon.c:g_set_strv_take
Unexecuted instantiation: cipher.c:g_set_strv_take
Unexecuted instantiation: circbuffer.c:g_set_strv_take
Unexecuted instantiation: cmds.c:g_set_strv_take
Unexecuted instantiation: connection.c:g_set_strv_take
Unexecuted instantiation: conversation.c:g_set_strv_take
Unexecuted instantiation: core.c:g_set_strv_take
Unexecuted instantiation: debug.c:g_set_strv_take
Unexecuted instantiation: eventloop.c:g_set_strv_take
Unexecuted instantiation: ft.c:g_set_strv_take
Unexecuted instantiation: idle.c:g_set_strv_take
Unexecuted instantiation: imgstore.c:g_set_strv_take
Unexecuted instantiation: log.c:g_set_strv_take
Unexecuted instantiation: network.c:g_set_strv_take
Unexecuted instantiation: notify.c:g_set_strv_take
Unexecuted instantiation: plugin.c:g_set_strv_take
Unexecuted instantiation: pounce.c:g_set_strv_take
Unexecuted instantiation: prefs.c:g_set_strv_take
Unexecuted instantiation: privacy.c:g_set_strv_take
Unexecuted instantiation: proxy.c:g_set_strv_take
Unexecuted instantiation: prpl.c:g_set_strv_take
Unexecuted instantiation: request.c:g_set_strv_take
Unexecuted instantiation: roomlist.c:g_set_strv_take
Unexecuted instantiation: savedstatuses.c:g_set_strv_take
Unexecuted instantiation: server.c:g_set_strv_take
Unexecuted instantiation: signals.c:g_set_strv_take
Unexecuted instantiation: smiley.c:g_set_strv_take
Unexecuted instantiation: dnsquery.c:g_set_strv_take
Unexecuted instantiation: dnssrv.c:g_set_strv_take
Unexecuted instantiation: status.c:g_set_strv_take
Unexecuted instantiation: stringref.c:g_set_strv_take
Unexecuted instantiation: stun.c:g_set_strv_take
Unexecuted instantiation: sound.c:g_set_strv_take
Unexecuted instantiation: sound-theme-loader.c:g_set_strv_take
Unexecuted instantiation: sslconn.c:g_set_strv_take
Unexecuted instantiation: theme-loader.c:g_set_strv_take
Unexecuted instantiation: theme-manager.c:g_set_strv_take
Unexecuted instantiation: upnp.c:g_set_strv_take
Unexecuted instantiation: util.c:g_set_strv_take
Unexecuted instantiation: value.c:g_set_strv_take
Unexecuted instantiation: xmlnode.c:g_set_strv_take
Unexecuted instantiation: des.c:g_set_strv_take
Unexecuted instantiation: gchecksum.c:g_set_strv_take
Unexecuted instantiation: hmac.c:g_set_strv_take
Unexecuted instantiation: md4.c:g_set_strv_take
Unexecuted instantiation: rc4.c:g_set_strv_take
Unexecuted instantiation: accountopt.c:g_set_strv_take
Unexecuted instantiation: certificate.c:g_set_strv_take
Unexecuted instantiation: nat-pmp.c:g_set_strv_take
Unexecuted instantiation: ntlm.c:g_set_strv_take
Unexecuted instantiation: sound-theme.c:g_set_strv_take
Unexecuted instantiation: theme.c:g_set_strv_take
689
690
G_END_DECLS
691
692
#endif /* __G_STRFUNCS_H__ */