uuid.h
来自「最新的Host AP 新添加了许多pcmcia 的驱动」· C头文件 代码 · 共 26 行
H
26 行
/* * Universally Unique IDentifier (UUID) * Copyright (c) 2008, Jouni Malinen <j@w1.fi> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * * Alternatively, this software may be distributed under the terms of BSD * license. * * See README and COPYING for more details. */#ifndef UUID_H#define UUID_H#define UUID_LEN 16int 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);void uuid_gen_mac_addr(const u8 *mac_addr, u8 *uuid);#endif /* UUID_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?