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_octal

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

Type:bool

Parameter:

TypeParameterName
char **src
char **dst
163  p = dst , q = src
166  If Fast check for octal digit == 0 Then Return false
169  num = q++ & 7
170  When num < 32 && Fast check for octal digit && q - src < 3 cycle
171  num <<= 3
172  num += q++ & 7
174  p = num
175  dst += 1
176  src = q
177  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: