函数源码 |
Source File:include\linux\kernel.h |
Create Date:2022-07-27 06:38:21 |
首页 | Copyright©Brick |
602 603 604 605 606 607 608 609 610 | #define hex_asc_lo(x) hex_asc[((x) & 0x0f)] #define hex_asc_hi(x) hex_asc[((x) & 0xf0) >> 4] static inline char *hex_byte_pack( char *buf, u8 byte) { *buf++ = hex_asc_hi(byte); *buf++ = hex_asc_lo(byte); return buf; } |