函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

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

函数名称:escape_space

函数原型:static bool escape_space(unsigned char c, char **dst, char *end)

返回类型:bool

参数:

类型参数名称
unsigned charc
char **dst
char *end
315  out等于dst
319  :c恒等于'\n'
320  to等于'n'
321  退出
322  :c恒等于'\r'
323  to等于'r'
324  退出
325  :c恒等于'\t'
326  to等于't'
327  退出
328  :c恒等于'\v'
329  to等于'v'
330  退出
331  :c恒等于'\f'
332  to等于'f'
333  退出
334  默认
335  返回:false
338  如果out小于endout等于'\\'
340  out先自加
341  如果out小于endout等于to
343  out先自加
345  dst等于out
346  返回:true
调用者
名称描述
string_escape_memstring_escape_mem - quote characters in the given memory buffer*@src: source buffer (unescaped)*@isz: source buffer size*@dst: destination buffer (escaped)*@osz: destination buffer size*@flags: combination of the flags*@only: NULL-terminated string