函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:lib\string_helpers.c Create Date:2022-07-27 07:23:06
Last Modify:2020-03-12 14:18:49 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:unescape_hex

函数原型:static bool unescape_hex(char **src, char **dst)

返回类型:bool

参数:

类型参数名称
char **src
char **dst
182  p等于dst, q等于src
186  如果q自加不等于'x'则返回:false
189  num等于digit等于十六进制数字转换为实数
190  如果digit小于0则返回:false
193  digit等于十六进制数字转换为实数
194  如果digit大于等于0则
195  q自加
196  num等于num左移4位按位或digit
198  p等于num
199  dst加等于1
200  src等于q
201  返回:true
调用者
名称描述
string_unescapestring_unescape - unquote characters in the given string*@src: source buffer (escaped)*@dst: destination buffer (unescaped)*@size: size of the destination buffer (0 to unlimit)*@flags: combination of the flags.* Description: