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"
""
char text[] = { #include "myfile.txt" }
DZone Snippets > scvalex > crappy
12388 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
char text[] = { #include "myfile.txt" }