diff options
author | John Ankarström <john@ankarstrom.se> | 2021-09-17 17:02:29 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2021-09-17 17:03:57 +0200 |
commit | 2810ad72aeb973a898034d6875922284062c5ce0 (patch) | |
tree | 2c7555b79054d57350cc4136e3215094c9b4b685 /query.h | |
parent | 38f8e2242353711d5c87c58f3831306934d2e6b7 (diff) | |
download | cforum-2810ad72aeb973a898034d6875922284062c5ce0.tar.gz |
Rework query functions
Now, the value/parameter retrieval function handles both GET and
POST parameters.
Diffstat (limited to 'query.h')
-rw-r--r-- | query.h | 12 |
1 files changed, 9 insertions, 3 deletions
@@ -1,4 +1,10 @@ -char *qs; +#define TRUNCATED(s) s[-1] -void setqs(void); -char *query(char *);
\ No newline at end of file +struct query{ + int post; + char *string; +} query; + +char *nextparam(int); +void setquery(void); +char *split(char *);
\ No newline at end of file |