42seoul(24)
-
Libft(6) - memchr
Libft(6) - memchr MEMCHR(3) BSD Library Functions Manual MEMCHR(3) NAME memchr -- locate byte in byte string LIBRARY Standard C Library (libc, -lc) SYNOPSIS #include void * memchr(const void *s, int c, size_t n); DESCRIPTION The memchr() function locates the first occurrence of c (converted to an unsigned char) in string s. RETURN VALUES The memchr() function returns a pointer to the byte locate..
2021.06.26 -
Libft(5) - memmove
Libft(5) - memmove MEMMOVE(3) BSD Library Functions Manual MEMMOVE(3) NAME memmove -- copy byte string LIBRARY Standard C Library (libc, -lc) SYNOPSIS #include void * memmove(void *dst, const void *src, size_t len); DESCRIPTION The memmove() function copies len bytes from string src to string dst. The two strings may overlap; the copy is always done in a non-destructive manner. RETURN VALUES The..
2021.06.26 -
Libft(4) - memccpy
Libft(4) - memccpy MEMCCPY(3) BSD Library Functions Manual MEMCCPY(3) NAME memccpy -- copy string until character found LIBRARY Standard C Library (libc, -lc) SYNOPSIS #include void * memccpy(void *restrict dst, const void *restrict src, int c, size_t n); DESCRIPTION The memccpy() function copies bytes from string src to string dst. If the character c (as converted to an unsigned char) occurs in..
2021.05.22 -
Libft(3) - memcpy
Libft(3) - memcpy MEMCPY(3) BSD Library Functions Manual MEMCPY(3) NAME memcpy -- copy memory area LIBRARY Standard C Library (libc, -lc) SYNOPSIS #include void * memcpy(void *restrict dst, const void *restrict src, size_t n); DESCRIPTION The memcpy() function copies n bytes from memory area src to memory area dst. If dst and src overlap, behavior is undefined. Applications in which dst and src ..
2021.05.22 -
Libft(2) - bzero
Libft(2) - bzero BZERO(3) BSD Library Functions Manual BZERO(3) NAME bzero -- write zeroes to a byte string LIBRARY Standard C Library (libc, -lc) SYNOPSIS #include void bzero(void *s, size_t n); DESCRIPTION The bzero() function writes n zeroed bytes to the string s. If n is zero, bzero() does nothing. SEE ALSO memset(3), swab(3) HISTORY A bzero() function appeared in 4.3BSD. Its prototype exist..
2021.05.22 -
Libft(1) - memset
Libft(1) - memset MEMSET(3) BSD Library Functions Manual MEMSET(3) NAME memset -- fill a byte string with a byte value LIBRARY Standard C Library (libc, -lc) SYNOPSIS #include void * memset(void *b, int c, size_t len); DESCRIPTION The memset() function writes len bytes of value c (converted to an unsigned char) to the string b. RETURN VALUES The memset() function returns its first argument. SEE ..
2021.05.22