函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

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

函数名称:parse_option_str - Parse a string and check an option is set or not*@str: String to be parsed*@option: option name* This function parses a string containing a comma-separated list of* strings like a=b,c.

函数原型:bool parse_option_str(const char *str, const char *option)

返回类型:bool

参数:

类型参数名称
const char *str
const char *option
179 str循环
180  如果非字符串指定长度比较
181  str加等于strlen(option)
182  如果非strstr恒等于','则返回:true
186 strstr不等于','循环
187  str自加
189  如果str恒等于','则str自加
193  返回:false