diff options
author | Levi Bostian <levi.bostian@gmail.com> | 2013-08-31 21:18:59 -0500 |
---|---|---|
committer | Levi Bostian <levi.bostian@gmail.com> | 2013-08-31 21:18:59 -0500 |
commit | e9c92321f4442ca4af75f6cce16d435287dad750 (patch) | |
tree | 64e41a2fa9477b4bfbf05ef373f5207705cb7cb5 | |
parent | ca32d7a5f2edfe9dad2b43fc849b1495c2b5f889 (diff) |
Add <ctype.h> include statement to popular C standar libraries.
-rw-r--r-- | c.html.markdown | 1 |
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: |