summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorZachary Ferguson <zfergus2@users.noreply.github.com>2015-10-14 21:59:42 -0400
committerZachary Ferguson <zfergus2@users.noreply.github.com>2015-10-14 21:59:42 -0400
commit27bb1a1e80b727b00b5ea8045d4bfa07eb1293bd (patch)
tree2ea0b37c39de2e1bf5d2ad06ba8e2b3caab8967a
parent79ced08e094e488eb21d026c882babc50d0ca168 (diff)
Removed separate code section
Removed the separate code section for header files
-rw-r--r--c.html.markdown6
1 files changed, 2 insertions, 4 deletions
diff --git a/c.html.markdown b/c.html.markdown
index 0c4916ac..5e8e13c1 100644
--- a/c.html.markdown
+++ b/c.html.markdown
@@ -628,9 +628,7 @@ typedef void (*my_fnp_type)(char *);
// , | left to right //
//---------------------------------------------------//
-```
-
-### Header Files
+/******************************* Header Files **********************************
Header files are an important part of c as they allow for the connection of c
source files and can simplify code and definitions by seperating them into
@@ -640,8 +638,8 @@ Header files are syntaxtically similar to c source files but reside in ".h"
files. They can be included in your c source file by using the precompiler
command #include "example.h", given that example.h exists in the same directory
as the c file.
+*/
-```h
/* A safe guard to prevent the header from being defined too many times. This */
/* happens in the case of circle dependency, the contents of the header is */
/* already defined. */