ft_isprint - chanhl22/libft GitHub Wiki
1 /* ************************************************************************** */
2 /* */
3 /* ::: :::::::: */
4 /* ft_isprint.c :+: :+: :+: */
5 /* +:+ +:+ +:+ */
6 /* By: chanhlee <[email protected].> +#+ +:+ +#+ */
7 /* +#+#+#+#+#+ +#+ */
8 /* Created: 2021/01/20 10:45:38 by chanhlee #+# #+# */
9 /* Updated: 2021/01/20 10:47:43 by chanhlee ### ########.fr */
10 /* */
11 /* ************************************************************************** */
12
13 #include "libft.h"
14
15 int ft_isprint(int c)
16 {
17 return (32 <= c && c <= 126); // μΆλ ₯ν μ μλ μμ€ν€μ½λμ λ²μ
18 }