File: gusb-json-common.h

package info (click to toggle)
libgusb 0.4.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 592 kB
  • sloc: ansic: 5,602; xml: 206; python: 84; sh: 34; makefile: 9; javascript: 4
file content (27 lines) | stat: -rw-r--r-- 635 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
 *
 * Copyright (C) 2023 Collabora Ltd.
 *    @author Frédéric Danis <frederic.danis@collabora.com>
 *
 * SPDX-License-Identifier: LGPL-2.1+
 */

#pragma once

#include <glib.h>
#include <json-glib/json-glib.h>

G_BEGIN_DECLS

#if !JSON_CHECK_VERSION(1, 6, 0)
const char *
json_object_get_string_member_with_default(JsonObject *json_object,
					   const char *member_name,
					   const char *default_value);
gint64
json_object_get_int_member_with_default(JsonObject *json_object,
					const char *member_name,
					gint64 default_value);
#endif

G_END_DECLS