函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

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

函数名称:unescape_space

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

返回类型:bool

参数:

类型参数名称
char **src
char **dst
135  p等于dst, q等于src
138  :q恒等于'n'
139  p等于'\n'
140  退出
141  :q恒等于'r'
142  p等于'\r'
143  退出
144  :q恒等于't'
145  p等于'\t'
146  退出
147  :q恒等于'v'
148  p等于'\v'
149  退出
150  :q恒等于'f'
151  p等于'\f'
152  退出
153  默认
154  返回:false
156  dst加等于1
157  src加等于1
158  返回: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: