source: rtems-libbsd/freebsd/contrib/wpa/src/utils/uuid.h @ 9c9d11b

55-freebsd-126-freebsd-12
Last change on this file since 9c9d11b was 9c9d11b, checked in by Sichen Zhao <1473996754@…>, on 08/01/17 at 12:43:41

Import wpa from FreeBSD

  • Property mode set to 100644
File size: 412 bytes
Line 
1/*
2 * Universally Unique IDentifier (UUID)
3 * Copyright (c) 2008, Jouni Malinen <j@w1.fi>
4 *
5 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
7 */
8
9#ifndef UUID_H
10#define UUID_H
11
12#define UUID_LEN 16
13
14int uuid_str2bin(const char *str, u8 *bin);
15int uuid_bin2str(const u8 *bin, char *str, size_t max_len);
16int is_nil_uuid(const u8 *uuid);
17
18#endif /* UUID_H */
Note: See TracBrowser for help on using the repository browser.