tests/lib/: Use the intended license
[libquvi-scripts.git] / tests / lib / re.c
blob3d52be75bfc0f7f1c83351b50fddcdc967fbcfa2
1 /* libquvi-scripts
2 * Copyright (C) 2012 Toni Gundogdu <legatvs@gmail.com>
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.1 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, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301 USA
20 #include "config.h"
22 #include <glib.h>
24 #define _W "%s: %s"
26 gboolean match(const gchar *s, const gchar *p)
28 GMatchInfo *m;
29 GError *err;
30 GRegex *re;
31 gboolean r;
33 err = NULL;
34 re = g_regex_new(p, G_REGEX_MULTILINE, 0, &err);
36 if (err != NULL)
38 g_warning(_W, __func__, err->message);
39 g_error_free(err);
40 return (FALSE);
43 m = NULL;
44 r = g_regex_match(re, s, 0, &m);
46 g_match_info_free(m);
47 m = NULL;
49 g_regex_unref(re);
50 re = NULL;
52 return (r);
55 gchar *capture(const gchar *s, const gchar *p)
57 GMatchInfo *m;
58 GError *err;
59 GRegex *re;
60 gchar *r;
62 err = NULL;
64 re = g_regex_new(p, G_REGEX_MULTILINE, 0, &err);
65 if (err != NULL)
67 g_warning(_W, __func__, err->message);
68 g_error_free(err);
69 err = NULL;
70 return (NULL);
73 m = NULL;
74 r = NULL;
76 if (g_regex_match(re, s, 0, &m) == TRUE)
77 r = g_match_info_fetch(m, 1);
79 g_match_info_free(m);
80 m = NULL;
82 g_regex_unref(re);
83 re = NULL;
85 return (r);
88 /* vim: set ts=2 sw=2 tw=72 expandtab: */