Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:lib\decompress_unxz.c Create Date:2022-07-28 06:17:05
Last Modify:2020-03-15 22:53:09 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:Not static to avoid a conflict with the prototype in the Linux headers.

Proto:void *memmove(void *dest, const void *src, size_t size)

Type:void

Parameter:

TypeParameterName
void *dest
const void *src
size_tsize
206  d = dest
207  s = src
210  If d < s Then
211  When i < size cycle d[i] = s[i]
213  Else if d > s Then
214  i = size
215  When i-- > 0 cycle
216  d[i] = s[i]
219  Return dest