blob: 24d7b6e749b7df3ca3e2cb61b8e58a2e62bdce56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/* ************************************************************************** */
/* LE - / */
/* / */
/* ft_ischarset.c .:: .:/ . .:: */
/* +:+:+ +: +: +:+:+ */
/* By: rbousset <marvin@le-101.fr> +:+ +: +: +:+ */
/* #+# #+ #+ #+# */
/* Created: 2019/12/22 16:48:45 by rbousset #+# ## ## #+# */
/* Updated: 2019/12/22 16:48:47 by rbousset ### #+. /#+ ###.fr */
/* / */
/* / */
/* ************************************************************************** */
#include <libft.h>
#include <stddef.h>
#include <inttypes.h>
uint8_t
ft_ischarset(const char *charset, int c)
{
size_t i;
i = 0;
while (charset[i])
{
if (charset[i] == c)
return (1);
i++;
}
return (0);
}
|