函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

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

函数名称:moyo_alphabet_char - Check whether the character is an alphabet.*@c: The character to check.* Returns true if @c is an alphabet character, false otherwise.

函数原型:static inline bool tomoyo_alphabet_char(const char c)

返回类型:bool

参数:

类型参数名称
const charc
330  返回:c大于等于'A'且c小于等于'Z'或c大于等于'a'且c小于等于'z'
调用者
名称描述
tomoyo_file_matches_pattern2moyo_file_matches_pattern2 - Pattern matching without '/' character and "\-" pattern.*@filename: The start of string to check.*@filename_end: The end of string to check.*@pattern: The start of pattern to compare.