summaryrefslogtreecommitdiffhomepage
path: root/c.html.markdown
diff options
context:
space:
mode:
authorLevi Bostian <levi.bostian@gmail.com>2013-08-31 21:18:59 -0500
committerLevi Bostian <levi.bostian@gmail.com>2013-08-31 21:18:59 -0500
commite9c92321f4442ca4af75f6cce16d435287dad750 (patch)
tree64e41a2fa9477b4bfbf05ef373f5207705cb7cb5 /c.html.markdown
parentca32d7a5f2edfe9dad2b43fc849b1495c2b5f889 (diff)
Add <ctype.h> include statement to popular C standar libraries.
Diffstat (limited to 'c.html.markdown')
-rw-r--r--c.html.markdown1
1 files changed, 1 insertions, 0 deletions
diff --git a/c.html.markdown b/c.html.markdown
index 4e7dae5c..6d95f28b 100644
--- a/c.html.markdown
+++ b/c.html.markdown
@@ -62,6 +62,7 @@ enum days {SUN = 1, MON, TUE, WED, THU, FRI, SAT};
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
+#include <ctype.h>
// (File names between <angle brackets> are headers from the C standard library.)
// For your own headers, use double quotes instead of angle brackets: