Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:lib\string_helpers.c Create Date:2022-07-28 06:25:52
Last Modify:2020-03-12 14:18:49 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:unescape_special

Proto:static bool unescape_special(char **src, char **dst)

Type:bool

Parameter:

TypeParameterName
char **src
char **dst
206  p = dst , q = src
209  Case q == '\"'
210  p = '\"'
211  Break
212  Case q == '\\'
213  p = '\\'
214  Break
215  Case q == 'a'
216  p = '\a'
217  Break
218  Case q == 'e'
219  p = '\e'
220  Break
221  Default
222  Return false
224  dst += 1
225  src += 1
226  Return true
Caller
NameDescribe
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: