Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

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

Name:unescape_space

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

Type:bool

Parameter:

TypeParameterName
char **src
char **dst
135  p = dst , q = src
138  Case q == 'n'
139  p = '\n'
140  Break
141  Case q == 'r'
142  p = '\r'
143  Break
144  Case q == 't'
145  p = '\t'
146  Break
147  Case q == 'v'
148  p = '\v'
149  Break
150  Case q == 'f'
151  p = '\f'
152  Break
153  Default
154  Return false
156  dst += 1
157  src += 1
158  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: