|
memccpy(3) -- copy memory area
|
The memccpy() function copies no more than n bytes from memory area src to memory area dest, stopping when the character c is found. |
memchr(3) -- scan memory for a character
|
The memchr() function scans the first n bytes of the memory area pointed to by s for the character c. The first byte to match c (interpreted as an unsigned character) stops the operation. |
|
memcmp(3) -- compare memory areas
|
The memcmp() function compares the first n bytes of the memory areas s1 and s2. It returns an integer less than, equal to, or greater than zero if s1 is found, respectively, to be less than, to match,... |
memcpy(3) -- copy memory area
|
The memcpy() function copies n bytes from memory area src to memory area dest. The memory areas may not overlap. Use memmove(3) if the memory areas do overlap. |
memfrob(3) -- frobnicate (encrypt) a memory area
|
The memfrob() function encrypts the first n bytes of the memory area s by exclusive-ORing each character with the number 42. The effect can be reversed by using memfrob() on the encrypted memory area.... |
memmem(3) -- locate a substring
|
The memmem() function finds the start of the first occurrence of the substring needle of length needlelen in the memory area haystack of length haystacklen. |
memmove(3) -- copy memory area
|
The memmove() function copies n bytes from memory area src to memory area dest. The memory areas may overlap. |
memset(3) -- fill memory with a constant byte
|
The memset() function fills the first n bytes of the memory area pointed to by s with the constant byte c. |
mkfifo(3) -- make a FIFO special file (a named pipe)
|
mkfifo makes a FIFO special file with name pathname. mode specifies the FIFO's permissions. It is modified by the process's umask in the usual way: the permissions of the created file are (mode & ~u... |
mkstemp(3) -- create a unique temporary file
|
The mkstemp() function generates a unique temporary file name from tem- plate. The last six characters of template must be XXXXXX and these are replaced with a string that makes the filename unique. T... |
mktemp(3) -- make a unique temporary file name
|
The mktemp() function generates a unique temporary file name from tem- plate. The last six characters of template must be XXXXXX and these are replaced with a string that makes the filename unique. Si... |
modf(3) -- extract signed integral and fractional values from floatingpoint number
|
The modf() function breaks the argument x into an integral part and a fractional part, each of which has the same sign as x. The integral part is stored in iptr. |
mpool(3) -- shared memory buffer pool
|
Mpool is the library interface intended to provide page oriented buffer management of files. The buffers may be shared between processes. The function mpool_open initializes a memory pool. The key arg... |
netlink(3) -- Netlink macros
|
netlink.h defines several standard macros to access or create a netlink datagram. They are similar in spirit to the macros defined in cmsg(3) for auxilliary data. The buffer passed to and from a netli... |
ngettext(3) -- translate message and choose plural form
|
The ngettext, dngettext and dcngettext functions attempt to translate a text string into the user's native language, by looking up the appropriate plural form of the translation in a message catalog.... |