函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:arch\x86\boot\string.c Create Date:2022-07-27 08:26:13
Last Modify:2022-05-21 21:56:45 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:simple_guess_base

函数原型:static unsigned int simple_guess_base(const char *cp)

返回类型:unsigned int

参数:

类型参数名称
const char *cp
104  如果cp[0]恒等于'0'则
105  如果Works only for digits and letters, but small and fast (cp[1])恒等于'x'且isxdigit(cp[2])则返回:16
107  否则返回:8
109  否则
110  返回:10
调用者
名称描述
simple_strtoull十六进制串转换为长整数