Woops. Fixed a stupid error

This commit is contained in:
Gitea 2020-12-24 22:36:51 -06:00
parent 0b713dee9c
commit 660dfcb6a7
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
#include <stdio.h>
#include <ctype.h>
int ispunct(int c) {
return (c < 128 && !(isalnum(c) || iscntrl(c)));