1MEMSCAN(9) Basic C Library Functions MEMSCAN(9)
23
4
NAME
6memscan - Find a character in an area of memory.
7
SYNOPSIS
9void * memscan(void * addr, int c, size_t size);
10
ARGUMENTS
12addr
13The memory area
1415
c
16The byte to search for
1718
size
19The size of the area.
20
DESCRIPTION
22returns the address of the first occurrence of c, or 1 byte past the
23area if c is not found
24
COPYRIGHT
26Kernel Hackers Manual 2.6. June 2019 MEMSCAN(9)