summaryrefslogtreecommitdiff
path: root/lib/formdata.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-01-05 10:11:41 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-01-05 10:11:41 +0000
commit4031104404c6ceed5e57134125dcdb6cac51c564 (patch)
tree18bd035e58e42180cf416d0d94d4726cd44d9d7f /lib/formdata.h
parent9f9cac7402f9f134be6f6d5b7fb830e9946a83d8 (diff)
downloadgnurl-4031104404c6ceed5e57134125dcdb6cac51c564.tar.gz
gnurl-4031104404c6ceed5e57134125dcdb6cac51c564.tar.bz2
gnurl-4031104404c6ceed5e57134125dcdb6cac51c564.zip
Internal symbols that aren't static are now prefixed with 'Curl_'
Diffstat (limited to 'lib/formdata.h')
-rw-r--r--lib/formdata.h22
1 files changed, 9 insertions, 13 deletions
diff --git a/lib/formdata.h b/lib/formdata.h
index dd5e0a4ad..4a0d8509d 100644
--- a/lib/formdata.h
+++ b/lib/formdata.h
@@ -36,23 +36,19 @@ struct Form {
been sent in a previous invoke */
};
-int FormParse(char *string,
- struct HttpPost **httppost,
- struct HttpPost **last_post);
+int Curl_FormInit(struct Form *form, struct FormData *formdata );
-int FormInit(struct Form *form, struct FormData *formdata );
-
-struct FormData *getFormData(struct HttpPost *post,
- int *size);
+struct FormData *Curl_getFormData(struct HttpPost *post,
+ int *size);
/* fread() emulation */
-int FormReader(char *buffer,
- size_t size,
- size_t nitems,
- FILE *mydata);
+int Curl_FormReader(char *buffer,
+ size_t size,
+ size_t nitems,
+ FILE *mydata);
-char *MakeFormBoundary(void);
+char *Curl_FormBoundary(void);
-void FormFree(struct FormData *);
+void Curl_FormFree(struct FormData *);
#endif