summaryrefslogtreecommitdiff
path: root/userland/libc/ctype/ispunct.c
blob: abef66d70eae2fe434f4e116b33cfb7fdd1d759d (plain)
1
2
3
4
5
6
#include <ctype.h>

// https://pubs.opengroup.org/onlinepubs/9699919799/functions/ispunct.html
int ispunct(int c) {
  return (c == '.');
}