Marcel Holtmann | 50e9f0d | 2012-11-20 11:56:05 +0100 | [diff] [blame] | 1 | /* |
| 2 | * |
| 3 | * BlueZ - Bluetooth protocol stack for Linux |
| 4 | * |
Marcel Holtmann | e691f25 | 2014-02-11 10:59:14 -0800 | [diff] [blame] | 5 | * Copyright (C) 2011-2014 Intel Corporation |
| 6 | * Copyright (C) 2002-2010 Marcel Holtmann <marcel@holtmann.org> |
Marcel Holtmann | 50e9f0d | 2012-11-20 11:56:05 +0100 | [diff] [blame] | 7 | * |
| 8 | * |
Marcel Holtmann | e691f25 | 2014-02-11 10:59:14 -0800 | [diff] [blame] | 9 | * This library is free software; you can redistribute it and/or |
| 10 | * modify it under the terms of the GNU Lesser General Public |
| 11 | * License as published by the Free Software Foundation; either |
| 12 | * version 2.1 of the License, or (at your option) any later version. |
Marcel Holtmann | 50e9f0d | 2012-11-20 11:56:05 +0100 | [diff] [blame] | 13 | * |
Marcel Holtmann | e691f25 | 2014-02-11 10:59:14 -0800 | [diff] [blame] | 14 | * This library is distributed in the hope that it will be useful, |
Marcel Holtmann | 50e9f0d | 2012-11-20 11:56:05 +0100 | [diff] [blame] | 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
Marcel Holtmann | e691f25 | 2014-02-11 10:59:14 -0800 | [diff] [blame] | 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 17 | * Lesser General Public License for more details. |
Marcel Holtmann | 50e9f0d | 2012-11-20 11:56:05 +0100 | [diff] [blame] | 18 | * |
Marcel Holtmann | e691f25 | 2014-02-11 10:59:14 -0800 | [diff] [blame] | 19 | * You should have received a copy of the GNU Lesser General Public |
| 20 | * License along with this library; if not, write to the Free Software |
Marcel Holtmann | 50e9f0d | 2012-11-20 11:56:05 +0100 | [diff] [blame] | 21 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 22 | * |
| 23 | */ |
| 24 | |
| 25 | #include <stdint.h> |
| 26 | |
MichaĆ Narajowski | c318b33 | 2016-07-29 14:34:07 +0200 | [diff] [blame] | 27 | #define MAX_LEN_UUID_STR 37 |
| 28 | |
Marcel Holtmann | 50e9f0d | 2012-11-20 11:56:05 +0100 | [diff] [blame] | 29 | const char *uuid16_to_str(uint16_t uuid); |
Marcel Holtmann | a995381 | 2012-11-20 18:01:01 +0100 | [diff] [blame] | 30 | const char *uuid32_to_str(uint32_t uuid); |
Marcel Holtmann | fc41a5a | 2012-12-22 19:10:42 -0800 | [diff] [blame] | 31 | const char *uuidstr_to_str(const char *uuid); |