Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:arch\x86\boot\string.c Create Date:2022-07-28 07:27:04
Last Modify:2022-05-21 21:56:45 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:atou

Proto:unsigned int atou(const char *s)

Type:unsigned int

Parameter:

TypeParameterName
const char *s
93  i = 0
94  When isdigit( * s) cycle
95  i = i * 10 + ( * s++ - '0')
96  Return i