diff options
Diffstat (limited to 'lib/formdata.h')
-rw-r--r-- | lib/formdata.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/formdata.h b/lib/formdata.h index 35a5ca7a8..8623c89e5 100644 --- a/lib/formdata.h +++ b/lib/formdata.h @@ -47,8 +47,15 @@ int Curl_FormReader(char *buffer, size_t nitems, FILE *mydata); +/* possible (old) fread() emulation that copies at most one line */ +int Curl_FormReadOneLine(char *buffer, + size_t size, + size_t nitems, + FILE *mydata); + char *Curl_FormBoundary(void); void Curl_formclean(struct FormData *); #endif + |