Select one of the symbols to view example projects that use it.
 
Outline
#define UUID_H
#define UUID_LEN
uuid_str2bin(const char *, u8 *);
uuid_bin2str(const u8 *, char *, size_t);
is_nil_uuid(const u8 *);
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/wpa_supplicant/src/utils/uuid.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * Universally Unique IDentifier (UUID) * Copyright (c) 2008, Jouni Malinen <j@w1.fi> * * This software may be distributed under the terms of the BSD license. * See README for more details. *//* ... */ #ifndef UUID_H #define UUID_H #define UUID_LEN 16 int uuid_str2bin(const char *str, u8 *bin); int uuid_bin2str(const u8 *bin, char *str, size_t max_len); int is_nil_uuid(const u8 *uuid); /* ... */ #endif /* UUID_H */
Details
Show:
from
Types: Columns: