From 4031104404c6ceed5e57134125dcdb6cac51c564 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 5 Jan 2001 10:11:41 +0000 Subject: Internal symbols that aren't static are now prefixed with 'Curl_' --- lib/formdata.h | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) (limited to 'lib/formdata.h') 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 -- cgit v1.2.1