aboutsummaryrefslogtreecommitdiffstats
path: root/ft_strchr.c
blob: 0952232d737195dd38331c61d086945871f6f880 (plain)
1
2
3
4
5
6
7
#include "libft.h"

char *
ft_strchr (const char *s, int c)
{
  return (ft_memchr (s, c, ft_strlen (s) + 1));
}