File: gusb-util.c

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 (28 lines) | stat: -rw-r--r-- 497 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
28
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
 *
 * Copyright (C) 2011 Hans de Goede <hdegoede@redhat.com>
 *
 * SPDX-License-Identifier: LGPL-2.1+
 */

#include "config.h"

#include <libusb.h>

#include "gusb-util.h"

/**
 * g_usb_strerror:
 * @error_code: a libusb error code
 *
 * Converts the error code into a string
 *
 * Return value: String, or %NULL
 *
 * Since: 0.1.0
 **/
const gchar *
g_usb_strerror(gint error_code)
{
	return libusb_strerror(error_code);
}