├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .pushblind ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── bin ├── 404.html ├── 500.html └── hydration │ ├── actions.js │ ├── bridge.js │ └── entries.js ├── darwinconf.lua ├── darwindeps.json ├── devops.releasefier.lua ├── docs ├── build_and_install.md ├── configuring_the_server.md ├── cweb_debug_flag.md ├── dependencies.md ├── getting_headers.md ├── getting_query_param.md ├── hydration.md ├── hydration_actions.md ├── hydration_explanation.md ├── hydration_full_runnable_example.md ├── hydration_handling_args.md ├── hydration_handling_numbers.md ├── hydration_search_requirements.md ├── hydration_search_result.md ├── hydration_shortcuts.md ├── iterating_headers.md ├── iterating_query_params.md ├── killing_the_server.md ├── parsing_json.md ├── reading_binary_content.md ├── reading_body_content.md ├── returning_json_from_cjson.md ├── returning_values_files.md ├── returning_values_html.md ├── returning_values_other_formats.md ├── returning_values_plain_text.md ├── returning_values_rendered_html.md ├── route_method.md ├── static_files.md └── url_encode_params.md ├── examples ├── append.c ├── args.c ├── cweb_debug.c ├── getting_headers.c ├── getting_parrams.c ├── html_from_scratch.c ├── hydration_getting_a_entrie.c ├── hydration_getting_a_entrie_short.c ├── hydration_helloworld.c ├── incrementer.c ├── iterating_over_headers.c ├── iterating_over_query_paramns.c ├── kill.c ├── parsing_body_json.c ├── reading_binary_content.c ├── reading_body_content.c ├── rendering_html.c ├── returing_var_html.c ├── returning_any.c ├── returning_cjson.c ├── returning_files.c ├── returning_plain_text.c ├── returning_text_cleaning_memory.c ├── returning_var_html_cleaning_memory.c ├── route_and_method.c ├── sending_json.c ├── server_paramns.c ├── single_file.c ├── smart_cache_inside_rendered_text.c └── url_encoded_paramns.c ├── graphics ├── images │ └── hydration.jpg └── projects │ └── hydration.drawio ├── release.json └── src ├── config ├── hydratation │ ├── macros.app.h │ ├── macros.callbacks.h │ ├── macros.errors.h │ └── macros.keys.h ├── macros.request.h └── macros.response.h ├── dict ├── fdefine.dict.c └── typesB.dict.h ├── fdefine.extras.c ├── fdefine.strings.c ├── hydratation ├── bridge │ ├── fdefine.action.c │ ├── fdefine.args.c │ ├── fdefine.basic.c │ ├── fdefine.calls.c │ ├── fdefine.search_requirements.c │ ├── fdefine.search_result.c │ └── typesB.bridge.h ├── bridge_array │ ├── fdefine.bridge_array.c │ └── typesC.bridge_array.h ├── hydration │ ├── fdefine.hydration.c │ └── typesD.hydratation.h ├── search_requirements │ ├── fdefine.search_requirements.c │ └── typesC.search_requirements.h └── search_result │ ├── fdefine.search_result.c │ └── typesC.search_result.h ├── keyval ├── fdefine.key_val.c └── types.keyval.h ├── macros ├── macros.debug.h └── macros.hydration.h ├── namespace ├── dict_module │ ├── dict_module │ │ ├── fdefine.dict_module.c │ │ └── typesH.dict.h │ └── keyval_module │ │ ├── fdefine.keyval_module.c │ │ └── typesG.keyval.h ├── hydratation_module │ ├── actions │ │ ├── fdefine.actions.c │ │ └── typesG.actions.h │ ├── args │ │ ├── fdefine.args.c │ │ └── typesG.args.h │ ├── bridge │ │ ├── fdefine.bridge.c │ │ └── typesG.bridge.h │ ├── hydration │ │ ├── fdefine.hydration.c │ │ └── typesH.hydratation.h │ ├── search_requirements │ │ ├── fdefine.search_requirements.c │ │ └── typesG.search_requirements.h │ └── search_result │ │ ├── fdefine.search_result.c │ │ └── typesG.search_result.h ├── namespace │ ├── fdefine.namespace.c │ └── typesO.namespace.h ├── request_module │ ├── fdefine.request_module.c │ └── typesG.request.h ├── response_module │ ├── fdefine.response_module.c │ └── typesG.response.h ├── server_module │ ├── fdefine.server_module.c │ └── typesG.server.h └── string_array_module │ ├── fdefine.string_array_module.c │ └── typesG.string_array.h ├── one.c ├── request ├── fdefine.request_parser.c └── request │ ├── fdefine.request.c │ └── typesC.request.h ├── response ├── fdefine.response_functions.c └── response │ ├── fdefine.response.c │ └── typesC.response.h ├── server ├── globals.server.c ├── server │ ├── fdefine.constructors.c │ ├── fdefine.multi_process.c │ ├── fdefine.request_execution.c │ └── fdefine.single_process.c ├── server_functions │ └── fdefine.server_functions.c └── typesD.server.h ├── src_dependencies ├── dep_declare.dependencies.h └── dep_define.depenencies.c ├── static ├── fdefine.smart_cache.c ├── fdefine.static.c └── inline_inclusion │ ├── fdefine.inline_inclusion.c │ └── recursion_protection │ ├── recursion_element │ ├── fdefine.recursion_element.c │ └── types.recursion_element.h │ └── recursion_list │ ├── fdefine.recursion_list.c │ └── typesB.recursion_list.h └── string_array ├── fdefine.string_array.c └── types.string_array.h /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/.gitignore -------------------------------------------------------------------------------- /.pushblind: -------------------------------------------------------------------------------- 1 | cwebstudio -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/SECURITY.md -------------------------------------------------------------------------------- /bin/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/bin/404.html -------------------------------------------------------------------------------- /bin/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/bin/500.html -------------------------------------------------------------------------------- /bin/hydration/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/bin/hydration/actions.js -------------------------------------------------------------------------------- /bin/hydration/bridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/bin/hydration/bridge.js -------------------------------------------------------------------------------- /bin/hydration/entries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/bin/hydration/entries.js -------------------------------------------------------------------------------- /darwinconf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/darwinconf.lua -------------------------------------------------------------------------------- /darwindeps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/darwindeps.json -------------------------------------------------------------------------------- /devops.releasefier.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/devops.releasefier.lua -------------------------------------------------------------------------------- /docs/build_and_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/docs/build_and_install.md -------------------------------------------------------------------------------- /docs/configuring_the_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/docs/configuring_the_server.md -------------------------------------------------------------------------------- /docs/cweb_debug_flag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/docs/cweb_debug_flag.md -------------------------------------------------------------------------------- /docs/dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/docs/dependencies.md -------------------------------------------------------------------------------- /docs/getting_headers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/docs/getting_headers.md -------------------------------------------------------------------------------- /docs/getting_query_param.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/docs/getting_query_param.md -------------------------------------------------------------------------------- /docs/hydration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/docs/hydration.md -------------------------------------------------------------------------------- /docs/hydration_actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/docs/hydration_actions.md -------------------------------------------------------------------------------- /docs/hydration_explanation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/docs/hydration_explanation.md -------------------------------------------------------------------------------- /docs/hydration_full_runnable_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/docs/hydration_full_runnable_example.md -------------------------------------------------------------------------------- /docs/hydration_handling_args.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/docs/hydration_handling_args.md -------------------------------------------------------------------------------- /docs/hydration_handling_numbers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/docs/hydration_handling_numbers.md -------------------------------------------------------------------------------- /docs/hydration_search_requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/docs/hydration_search_requirements.md -------------------------------------------------------------------------------- /docs/hydration_search_result.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/docs/hydration_search_result.md -------------------------------------------------------------------------------- /docs/hydration_shortcuts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/docs/hydration_shortcuts.md -------------------------------------------------------------------------------- /docs/iterating_headers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/docs/iterating_headers.md -------------------------------------------------------------------------------- /docs/iterating_query_params.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/docs/iterating_query_params.md -------------------------------------------------------------------------------- /docs/killing_the_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/docs/killing_the_server.md -------------------------------------------------------------------------------- /docs/parsing_json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/docs/parsing_json.md -------------------------------------------------------------------------------- /docs/reading_binary_content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/docs/reading_binary_content.md -------------------------------------------------------------------------------- /docs/reading_body_content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/docs/reading_body_content.md -------------------------------------------------------------------------------- /docs/returning_json_from_cjson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/docs/returning_json_from_cjson.md -------------------------------------------------------------------------------- /docs/returning_values_files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/docs/returning_values_files.md -------------------------------------------------------------------------------- /docs/returning_values_html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/docs/returning_values_html.md -------------------------------------------------------------------------------- /docs/returning_values_other_formats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/docs/returning_values_other_formats.md -------------------------------------------------------------------------------- /docs/returning_values_plain_text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/docs/returning_values_plain_text.md -------------------------------------------------------------------------------- /docs/returning_values_rendered_html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/docs/returning_values_rendered_html.md -------------------------------------------------------------------------------- /docs/route_method.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/docs/route_method.md -------------------------------------------------------------------------------- /docs/static_files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/docs/static_files.md -------------------------------------------------------------------------------- /docs/url_encode_params.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/docs/url_encode_params.md -------------------------------------------------------------------------------- /examples/append.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/examples/append.c -------------------------------------------------------------------------------- /examples/args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/examples/args.c -------------------------------------------------------------------------------- /examples/cweb_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/examples/cweb_debug.c -------------------------------------------------------------------------------- /examples/getting_headers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/examples/getting_headers.c -------------------------------------------------------------------------------- /examples/getting_parrams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/examples/getting_parrams.c -------------------------------------------------------------------------------- /examples/html_from_scratch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/examples/html_from_scratch.c -------------------------------------------------------------------------------- /examples/hydration_getting_a_entrie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/examples/hydration_getting_a_entrie.c -------------------------------------------------------------------------------- /examples/hydration_getting_a_entrie_short.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/examples/hydration_getting_a_entrie_short.c -------------------------------------------------------------------------------- /examples/hydration_helloworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/examples/hydration_helloworld.c -------------------------------------------------------------------------------- /examples/incrementer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/examples/incrementer.c -------------------------------------------------------------------------------- /examples/iterating_over_headers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/examples/iterating_over_headers.c -------------------------------------------------------------------------------- /examples/iterating_over_query_paramns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/examples/iterating_over_query_paramns.c -------------------------------------------------------------------------------- /examples/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/examples/kill.c -------------------------------------------------------------------------------- /examples/parsing_body_json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/examples/parsing_body_json.c -------------------------------------------------------------------------------- /examples/reading_binary_content.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/examples/reading_binary_content.c -------------------------------------------------------------------------------- /examples/reading_body_content.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/examples/reading_body_content.c -------------------------------------------------------------------------------- /examples/rendering_html.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/examples/rendering_html.c -------------------------------------------------------------------------------- /examples/returing_var_html.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/examples/returing_var_html.c -------------------------------------------------------------------------------- /examples/returning_any.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/examples/returning_any.c -------------------------------------------------------------------------------- /examples/returning_cjson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/examples/returning_cjson.c -------------------------------------------------------------------------------- /examples/returning_files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/examples/returning_files.c -------------------------------------------------------------------------------- /examples/returning_plain_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/examples/returning_plain_text.c -------------------------------------------------------------------------------- /examples/returning_text_cleaning_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/examples/returning_text_cleaning_memory.c -------------------------------------------------------------------------------- /examples/returning_var_html_cleaning_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/examples/returning_var_html_cleaning_memory.c -------------------------------------------------------------------------------- /examples/route_and_method.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/examples/route_and_method.c -------------------------------------------------------------------------------- /examples/sending_json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/examples/sending_json.c -------------------------------------------------------------------------------- /examples/server_paramns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/examples/server_paramns.c -------------------------------------------------------------------------------- /examples/single_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/examples/single_file.c -------------------------------------------------------------------------------- /examples/smart_cache_inside_rendered_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/examples/smart_cache_inside_rendered_text.c -------------------------------------------------------------------------------- /examples/url_encoded_paramns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/examples/url_encoded_paramns.c -------------------------------------------------------------------------------- /graphics/images/hydration.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/graphics/images/hydration.jpg -------------------------------------------------------------------------------- /graphics/projects/hydration.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/graphics/projects/hydration.drawio -------------------------------------------------------------------------------- /release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/release.json -------------------------------------------------------------------------------- /src/config/hydratation/macros.app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/config/hydratation/macros.app.h -------------------------------------------------------------------------------- /src/config/hydratation/macros.callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/config/hydratation/macros.callbacks.h -------------------------------------------------------------------------------- /src/config/hydratation/macros.errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/config/hydratation/macros.errors.h -------------------------------------------------------------------------------- /src/config/hydratation/macros.keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/config/hydratation/macros.keys.h -------------------------------------------------------------------------------- /src/config/macros.request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/config/macros.request.h -------------------------------------------------------------------------------- /src/config/macros.response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/config/macros.response.h -------------------------------------------------------------------------------- /src/dict/fdefine.dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/dict/fdefine.dict.c -------------------------------------------------------------------------------- /src/dict/typesB.dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/dict/typesB.dict.h -------------------------------------------------------------------------------- /src/fdefine.extras.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/fdefine.extras.c -------------------------------------------------------------------------------- /src/fdefine.strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/fdefine.strings.c -------------------------------------------------------------------------------- /src/hydratation/bridge/fdefine.action.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/hydratation/bridge/fdefine.action.c -------------------------------------------------------------------------------- /src/hydratation/bridge/fdefine.args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/hydratation/bridge/fdefine.args.c -------------------------------------------------------------------------------- /src/hydratation/bridge/fdefine.basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/hydratation/bridge/fdefine.basic.c -------------------------------------------------------------------------------- /src/hydratation/bridge/fdefine.calls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/hydratation/bridge/fdefine.calls.c -------------------------------------------------------------------------------- /src/hydratation/bridge/fdefine.search_requirements.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/hydratation/bridge/fdefine.search_requirements.c -------------------------------------------------------------------------------- /src/hydratation/bridge/fdefine.search_result.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/hydratation/bridge/fdefine.search_result.c -------------------------------------------------------------------------------- /src/hydratation/bridge/typesB.bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/hydratation/bridge/typesB.bridge.h -------------------------------------------------------------------------------- /src/hydratation/bridge_array/fdefine.bridge_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/hydratation/bridge_array/fdefine.bridge_array.c -------------------------------------------------------------------------------- /src/hydratation/bridge_array/typesC.bridge_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/hydratation/bridge_array/typesC.bridge_array.h -------------------------------------------------------------------------------- /src/hydratation/hydration/fdefine.hydration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/hydratation/hydration/fdefine.hydration.c -------------------------------------------------------------------------------- /src/hydratation/hydration/typesD.hydratation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/hydratation/hydration/typesD.hydratation.h -------------------------------------------------------------------------------- /src/hydratation/search_requirements/fdefine.search_requirements.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/hydratation/search_requirements/fdefine.search_requirements.c -------------------------------------------------------------------------------- /src/hydratation/search_requirements/typesC.search_requirements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/hydratation/search_requirements/typesC.search_requirements.h -------------------------------------------------------------------------------- /src/hydratation/search_result/fdefine.search_result.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/hydratation/search_result/fdefine.search_result.c -------------------------------------------------------------------------------- /src/hydratation/search_result/typesC.search_result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/hydratation/search_result/typesC.search_result.h -------------------------------------------------------------------------------- /src/keyval/fdefine.key_val.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/keyval/fdefine.key_val.c -------------------------------------------------------------------------------- /src/keyval/types.keyval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/keyval/types.keyval.h -------------------------------------------------------------------------------- /src/macros/macros.debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/macros/macros.debug.h -------------------------------------------------------------------------------- /src/macros/macros.hydration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/macros/macros.hydration.h -------------------------------------------------------------------------------- /src/namespace/dict_module/dict_module/fdefine.dict_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/namespace/dict_module/dict_module/fdefine.dict_module.c -------------------------------------------------------------------------------- /src/namespace/dict_module/dict_module/typesH.dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/namespace/dict_module/dict_module/typesH.dict.h -------------------------------------------------------------------------------- /src/namespace/dict_module/keyval_module/fdefine.keyval_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/namespace/dict_module/keyval_module/fdefine.keyval_module.c -------------------------------------------------------------------------------- /src/namespace/dict_module/keyval_module/typesG.keyval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/namespace/dict_module/keyval_module/typesG.keyval.h -------------------------------------------------------------------------------- /src/namespace/hydratation_module/actions/fdefine.actions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/namespace/hydratation_module/actions/fdefine.actions.c -------------------------------------------------------------------------------- /src/namespace/hydratation_module/actions/typesG.actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/namespace/hydratation_module/actions/typesG.actions.h -------------------------------------------------------------------------------- /src/namespace/hydratation_module/args/fdefine.args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/namespace/hydratation_module/args/fdefine.args.c -------------------------------------------------------------------------------- /src/namespace/hydratation_module/args/typesG.args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/namespace/hydratation_module/args/typesG.args.h -------------------------------------------------------------------------------- /src/namespace/hydratation_module/bridge/fdefine.bridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/namespace/hydratation_module/bridge/fdefine.bridge.c -------------------------------------------------------------------------------- /src/namespace/hydratation_module/bridge/typesG.bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/namespace/hydratation_module/bridge/typesG.bridge.h -------------------------------------------------------------------------------- /src/namespace/hydratation_module/hydration/fdefine.hydration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/namespace/hydratation_module/hydration/fdefine.hydration.c -------------------------------------------------------------------------------- /src/namespace/hydratation_module/hydration/typesH.hydratation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/namespace/hydratation_module/hydration/typesH.hydratation.h -------------------------------------------------------------------------------- /src/namespace/hydratation_module/search_requirements/fdefine.search_requirements.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/namespace/hydratation_module/search_requirements/fdefine.search_requirements.c -------------------------------------------------------------------------------- /src/namespace/hydratation_module/search_requirements/typesG.search_requirements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/namespace/hydratation_module/search_requirements/typesG.search_requirements.h -------------------------------------------------------------------------------- /src/namespace/hydratation_module/search_result/fdefine.search_result.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/namespace/hydratation_module/search_result/fdefine.search_result.c -------------------------------------------------------------------------------- /src/namespace/hydratation_module/search_result/typesG.search_result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/namespace/hydratation_module/search_result/typesG.search_result.h -------------------------------------------------------------------------------- /src/namespace/namespace/fdefine.namespace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/namespace/namespace/fdefine.namespace.c -------------------------------------------------------------------------------- /src/namespace/namespace/typesO.namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/namespace/namespace/typesO.namespace.h -------------------------------------------------------------------------------- /src/namespace/request_module/fdefine.request_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/namespace/request_module/fdefine.request_module.c -------------------------------------------------------------------------------- /src/namespace/request_module/typesG.request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/namespace/request_module/typesG.request.h -------------------------------------------------------------------------------- /src/namespace/response_module/fdefine.response_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/namespace/response_module/fdefine.response_module.c -------------------------------------------------------------------------------- /src/namespace/response_module/typesG.response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/namespace/response_module/typesG.response.h -------------------------------------------------------------------------------- /src/namespace/server_module/fdefine.server_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/namespace/server_module/fdefine.server_module.c -------------------------------------------------------------------------------- /src/namespace/server_module/typesG.server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/namespace/server_module/typesG.server.h -------------------------------------------------------------------------------- /src/namespace/string_array_module/fdefine.string_array_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/namespace/string_array_module/fdefine.string_array_module.c -------------------------------------------------------------------------------- /src/namespace/string_array_module/typesG.string_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/namespace/string_array_module/typesG.string_array.h -------------------------------------------------------------------------------- /src/one.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/one.c -------------------------------------------------------------------------------- /src/request/fdefine.request_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/request/fdefine.request_parser.c -------------------------------------------------------------------------------- /src/request/request/fdefine.request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/request/request/fdefine.request.c -------------------------------------------------------------------------------- /src/request/request/typesC.request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/request/request/typesC.request.h -------------------------------------------------------------------------------- /src/response/fdefine.response_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/response/fdefine.response_functions.c -------------------------------------------------------------------------------- /src/response/response/fdefine.response.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/response/response/fdefine.response.c -------------------------------------------------------------------------------- /src/response/response/typesC.response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/response/response/typesC.response.h -------------------------------------------------------------------------------- /src/server/globals.server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/server/globals.server.c -------------------------------------------------------------------------------- /src/server/server/fdefine.constructors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/server/server/fdefine.constructors.c -------------------------------------------------------------------------------- /src/server/server/fdefine.multi_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/server/server/fdefine.multi_process.c -------------------------------------------------------------------------------- /src/server/server/fdefine.request_execution.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/server/server/fdefine.request_execution.c -------------------------------------------------------------------------------- /src/server/server/fdefine.single_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/server/server/fdefine.single_process.c -------------------------------------------------------------------------------- /src/server/server_functions/fdefine.server_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/server/server_functions/fdefine.server_functions.c -------------------------------------------------------------------------------- /src/server/typesD.server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/server/typesD.server.h -------------------------------------------------------------------------------- /src/src_dependencies/dep_declare.dependencies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/src_dependencies/dep_declare.dependencies.h -------------------------------------------------------------------------------- /src/src_dependencies/dep_define.depenencies.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/src_dependencies/dep_define.depenencies.c -------------------------------------------------------------------------------- /src/static/fdefine.smart_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/static/fdefine.smart_cache.c -------------------------------------------------------------------------------- /src/static/fdefine.static.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/static/fdefine.static.c -------------------------------------------------------------------------------- /src/static/inline_inclusion/fdefine.inline_inclusion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/static/inline_inclusion/fdefine.inline_inclusion.c -------------------------------------------------------------------------------- /src/static/inline_inclusion/recursion_protection/recursion_element/fdefine.recursion_element.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/static/inline_inclusion/recursion_protection/recursion_element/fdefine.recursion_element.c -------------------------------------------------------------------------------- /src/static/inline_inclusion/recursion_protection/recursion_element/types.recursion_element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/static/inline_inclusion/recursion_protection/recursion_element/types.recursion_element.h -------------------------------------------------------------------------------- /src/static/inline_inclusion/recursion_protection/recursion_list/fdefine.recursion_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/static/inline_inclusion/recursion_protection/recursion_list/fdefine.recursion_list.c -------------------------------------------------------------------------------- /src/static/inline_inclusion/recursion_protection/recursion_list/typesB.recursion_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/static/inline_inclusion/recursion_protection/recursion_list/typesB.recursion_list.h -------------------------------------------------------------------------------- /src/string_array/fdefine.string_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/string_array/fdefine.string_array.c -------------------------------------------------------------------------------- /src/string_array/types.string_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/CWebStudio/HEAD/src/string_array/types.string_array.h --------------------------------------------------------------------------------