diff options
author | FreeArtMan <dos21h@gmail.com> | 2015-02-17 20:00:33 +0900 |
---|---|---|
committer | FreeArtMan <dos21h@gmail.com> | 2015-02-17 20:00:33 +0900 |
commit | 670e03997afca107abbfc61a61f89477a9f9ab82 (patch) | |
tree | dc6b31a985104ef1180859780379408e1abdb215 /c_conf_gen/config/cs_config1.lua | |
parent | 35a421a727841319d5a998806924205ec6663bc2 (diff) | |
download | code-snippets-670e03997afca107abbfc61a61f89477a9f9ab82.tar.gz code-snippets-670e03997afca107abbfc61a61f89477a9f9ab82.zip |
c_conf_gen lua script that generates getopt code for fast argc,argv parsing. for lazy people
Diffstat (limited to 'c_conf_gen/config/cs_config1.lua')
-rw-r--r-- | c_conf_gen/config/cs_config1.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/c_conf_gen/config/cs_config1.lua b/c_conf_gen/config/cs_config1.lua new file mode 100644 index 0000000..3069bd3 --- /dev/null +++ b/c_conf_gen/config/cs_config1.lua @@ -0,0 +1,9 @@ +--config for empty config parsing file + +local M = {} + +M.project_name = "HelloWorld" +M.params_list = nil + + +return M
\ No newline at end of file |