quvi_new: Add call to bindtextdomain
[libquvi.git] / src / api / verify_new.c
blob4ca3d7c47e9617edcdda8b6f7c17f470b6a34e67
1 /* libquvi
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 /** @file verify_new.c */
22 #include "config.h"
24 #include <glib.h>
26 #include "quvi.h"
27 /* -- */
28 #include "_quvi_s.h"
29 #include "_quvi_verify_s.h"
31 static gpointer _verify_new(_quvi_t q, const gchar *url)
33 _quvi_verify_t qv = g_new0(struct _quvi_verify_s, 1);
34 qv->content_type = g_string_new(NULL);
35 qv->file_ext = g_string_new(NULL);
36 qv->url.input = g_string_new(url);
37 qv->handle.quvi = q;
38 return (qv);
41 /** @cond NODOC */
42 QuviError n_verify(_quvi_verify_t);
43 /** @endcond */
45 /** @brief Verify URL
46 @return New handle, @ref quvi_verify_free when done using it
47 @note
48 - Support for determining the file extension is very limited
49 - Use @ref quvi_ok for checking if an error occurred
50 @ingroup verify
52 quvi_verify_t quvi_verify_new(quvi_t handle, const char *url)
54 _quvi_verify_t v;
55 _quvi_t q;
57 /* If G_DISABLE_CHECKS is defined then the check is not performed. */
58 g_return_val_if_fail(handle != NULL, NULL);
59 g_return_val_if_fail(url != NULL, NULL);
61 q = (_quvi_t) handle;
62 v = _verify_new(q, url);
64 q->status.rc = n_verify(v);
66 return (v);
69 /* vim: set ts=2 sw=2 tw=72 expandtab: */