[go: up one dir, main page]

File: gusb-version.c

package info (click to toggle)
libgusb 0.3.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 456 kB
  • sloc: ansic: 3,453; python: 84; xml: 25; makefile: 10; sh: 8
file content (27 lines) | stat: -rw-r--r-- 541 bytes parent folder | download | duplicates (2)
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) 2018 Richard Hughes <richard@hughsie.com>
 *
 * SPDX-License-Identifier: LGPL-2.1+
 */

#include "config.h"

#include "gusb-version.h"

/**
 * g_usb_version_string:
 *
 * Gets the GUsb installed runtime version.
 *
 * Returns: a version number, e.g. "0.3.1"
 *
 * Since: 0.3.1
 **/
const gchar *
g_usb_version_string (void)
{
	return G_STRINGIFY(G_USB_MAJOR_VERSION) "."
		G_STRINGIFY(G_USB_MINOR_VERSION) "."
		G_STRINGIFY(G_USB_MICRO_VERSION);
}