ft_isascii.c 87 B

123456789
  1. int ft_isascii(int ch)
  2. {
  3. if (ch >= 0 && ch <= 127)
  4. {
  5. return (1);
  6. }
  7. return (0);
  8. }