Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:security\tomoyo\util.c Create Date:2022-07-28 19:47:40
Last Modify:2020-03-12 14:18:49 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name: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.

Proto:static inline bool tomoyo_alphabet_char(const char c)

Type:bool

Parameter:

TypeParameterName
const charc
330  Return c >= 'A' && c <= 'Z' || c >= 'a' && c <= 'z'
Caller
NameDescribe
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.