diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-01-05 10:11:41 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-01-05 10:11:41 +0000 |
commit | 4031104404c6ceed5e57134125dcdb6cac51c564 (patch) | |
tree | 18bd035e58e42180cf416d0d94d4726cd44d9d7f /lib/formdata.h | |
parent | 9f9cac7402f9f134be6f6d5b7fb830e9946a83d8 (diff) | |
download | curl-4031104404c6ceed5e57134125dcdb6cac51c564.tar.gz |
Internal symbols that aren't static are now prefixed with 'Curl_'
Diffstat (limited to 'lib/formdata.h')
-rw-r--r-- | lib/formdata.h | 22 |
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 |