aboutsummaryrefslogtreecommitdiff
path: root/readme
diff options
context:
space:
mode:
authorAleksey Veresov <aleksey@veresov.pro>2020-02-28 20:16:57 +0300
committerAleksey Veresov <aleksey@veresov.pro>2020-02-28 20:16:57 +0300
commitc65fdedc7bedfc20da73cdbfc34c22bb80139896 (patch)
tree2b110cb12e91753fbdaf5d94c71c44ce73c9019a /readme
parentc11dd93608624593af3fe5a3f2a3eefa56911fe4 (diff)
downloadmagi-c65fdedc7bedfc20da73cdbfc34c22bb80139896.tar
magi-c65fdedc7bedfc20da73cdbfc34c22bb80139896.tar.xz
magi-c65fdedc7bedfc20da73cdbfc34c22bb80139896.zip
[magi]
Diffstat (limited to 'readme')
-rw-r--r--readme4
1 files changed, 2 insertions, 2 deletions
diff --git a/readme b/readme
index 3160155..cf90f06 100644
--- a/readme
+++ b/readme
@@ -33,7 +33,7 @@ magi_request analyses incoming request, general workflow is to:
3. Process post part of the CGI request via 'magi_request_resume_cgi';
4. Now you have the full request analysed, so do your work;
5. And finally, free memory via 'magi_request_destroy'.
-For more see 'src/request.h'.
+For more see 'include/magi/request.h'.
magi_response provides output capabilities. You can form the response with
'magi_response_setup' used to setup defaults, and the following functions to
@@ -46,7 +46,7 @@ fill in your data ('...' means 'magi_response_'):
...add_format: add comething to the body, using format (similar to printf);
Outputting itself can be done with 'magi_response_cgi'.
To correctly free all occupied memory call 'magi_response_destroy'.
-For more see 'src/response.h'.
+For more see 'include/magi/response.h'.
Motivation
Web must be fun.