-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathft_strchrs.c
20 lines (18 loc) · 1008 Bytes
/
ft_strchrs.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strchrs.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: vbrazhni <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/07/22 19:21:34 by vbrazhni #+# #+# */
/* Updated: 2018/07/22 19:21:35 by vbrazhni ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strchrs(const char *s, int c)
{
if (!s)
return (NULL);
return (ft_strchr(s, c));
}