ft_memchr

ft_memchr

“ft_memchr에 대하여”

<목차>

1. MY CODES

2. MAN MEMCHR

memchr — scan memory for a character

(1) MY CODES

#include "libft.h"

void	*ft_memchr(const void *s, int c, size_t n)
{
	unsigned char	*dest;
	unsigned char	src;

	dest = (unsigned char *)s;
	src = c;
	while (n--)
	{
		if (*dest == src)
			return ((void *)dest);
		dest++;
	}
	return (0);
}
}
  • 메모리 블록에서 문자를 찾는다.

(2) MAN MEMCHR

SYNOPSIS
    #include <string.h>

       void *memchr(const void *s, int c, size_t n);

DESCRIPTION
       The  memchr() function scans the initial n bytes of the memory area pointed 
	   to by s for the first instance of c. Both c and the bytes of the memory area
	   pointed to by s are interpreted as unsigned char.

RETURN VALUE
       The memchr() and memrchr() functions return a pointer to the matching byte
	   or NULL if the character does not occur in the given memory area.
  • 주어진 메모리 영역 s에서부터, n 바이트만큼 탐색하면서 매개 변수로 주어진 value c가 첫 번째로 등장하는 부분을 찾는다. 매개변수 int c와 주어진 메모리 영역 s는 unsigned char로 변환된다.

  • 메모리 영역을 순회하는 동안 찾고자 하는 value가 존재하면 그 위치를 반환하고, 찾지 못했다면 NULL을 반환한다.