summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorKian Meng Ang <kianmeng.ang@gmail.com>2021-10-18 21:16:35 +0800
committerGitHub <noreply@github.com>2021-10-18 06:16:35 -0700
commita7b480ccbb4834e59858f5ffd04ab485da1e4b94 (patch)
treefec57dccfd4be6d900f62a9db612f9593bfb42d5 /utils
parent05dc0cfda95ea6ff0eb909254ddaaa869655edba (diff)
downloadpycparser-a7b480ccbb4834e59858f5ffd04ab485da1e4b94.tar.gz
Fix typos (#443)
* Fix typos * Revert changes in vendor module
Diffstat (limited to 'utils')
-rw-r--r--utils/internal/zc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/internal/zc.c b/utils/internal/zc.c
index 5e56974..4c1c047 100644
--- a/utils/internal/zc.c
+++ b/utils/internal/zc.c
@@ -12,7 +12,7 @@
void print_help(int exval);
int main (int argc, char *argv[]) {
- /* word delimeter for strtok() */
+ /* word delimiter for strtok() */
char delim[] = ".,:;`/\"+-_(){}[]<>*&^%$#@!?~/|\\=1234567890 \t\n";
char line[MAXLINE]; /* input buff, fgets() */
char *stray = NULL; /* returned value by strtok() */