Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:scripts\dtc\libfdt\fdt.c Create Date:2022-07-28 06:18:19
Last Modify:2020-03-12 14:18:49 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:fdt_find_string_

Proto:const char *fdt_find_string_(const char *strtab, int tabsize, const char *s)

Type:char

Parameter:

TypeParameterName
const char *strtab
inttabsize
const char *s
267  len = strlen(s) + 1
268  last = strtab + tabsize - len
271  When p <= last cycle If memcmp(p, s, len) == 0 Then
273  Return p
274  Return NULL