~ubuntu-branches/ubuntu/precise/usbutils/precise

« back to all changes in this revision

Viewing changes to usbhid-dump/include/usbhid_dump/str.h

  • Committer: Bazaar Package Importer
  • Author(s): Aurelien Jarno
  • Date: 2011-02-06 13:32:44 UTC
  • mfrom: (2.1.14 sid)
  • Revision ID: james.westby@ubuntu.com-20110206133244-9111gklgz7vuygd7
Tags: 1:001-1
* New upstream version, with new version numbering system.
* Switch build-dependencies from libusb-dev to libusb-1.0-0-dev.
* Update usb.ids.
* Fix 13fe:3100 entry, 4GB versions of the device also exists.  
  Closes: bug#599817.
* Bumped Standards-Version to 3.9.1 (no changes).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/** @file
 
2
 * @brief usbhid-dump - string utilities
 
3
 *
 
4
 * Copyright (C) 2010 Nikolai Kondrashov
 
5
 *
 
6
 * This file is part of usbhid-dump.
 
7
 *
 
8
 * Usbhid-dump is free software; you can redistribute it and/or modify
 
9
 * it under the terms of the GNU General Public License as published by
 
10
 * the Free Software Foundation; either version 2 of the License, or
 
11
 * (at your option) any later version.
 
12
 *
 
13
 * Usbhid-dump is distributed in the hope that it will be useful,
 
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
 * GNU General Public License for more details.
 
17
 *
 
18
 * You should have received a copy of the GNU General Public License
 
19
 * along with usbhid-dump; if not, write to the Free Software
 
20
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
21
 *
 
22
 * @author Nikolai Kondrashov <spbnick@gmail.com>
 
23
 *
 
24
 * @(#) $Id$
 
25
 */
 
26
 
 
27
#ifndef __USBHID_DUMP_STR_H__
 
28
#define __USBHID_DUMP_STR_H__
 
29
 
 
30
#include <stdbool.h>
 
31
 
 
32
#ifdef __cplusplus
 
33
extern "C" {
 
34
#endif
 
35
 
 
36
extern bool usbhid_dump_strisblank(const char *str);
 
37
 
 
38
#ifdef __cplusplus
 
39
} /* extern "C" */
 
40
#endif
 
41
 
 
42
#endif /* __USBHID_DUMP_STR_H__ */