函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

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

函数名称:strchr_selftest

函数原型:static __init int strchr_selftest(void)

返回类型:int

参数:

117  test_string等于"abcdefghijkl"
118  empty_string等于""
122 i小于strlen(test_string)加1循环
123  result等于strchr(test_string, test_string[i])
124  如果resulttest_string不等于i则返回:i加'a'
128  result等于strchr(empty_string, '\0')
129  如果result不等于empty_string则返回:0x101
132  result等于strchr(empty_string, 'a')
133  如果result则返回:0x102
136  result等于strchr(test_string, 'z')
137  如果result则返回:0x103
140  返回:0
调用者
名称描述
string_selftest_init