Include text files in C source
Note: This only works if ALL lines in the file are enclosed in "s.
Wrong myfile.txt:
Hello world
Goodbye world
Right myfile.txt:
"Hello world"
"Goodbyle world"
""
1 2 char text[] = { 3 #include "myfile.txt" 4 }
DZone Snippets > scvalex > hack
13468 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
1 2 char text[] = { 3 #include "myfile.txt" 4 }