diff options
author | Werner Koch <[email protected]> | 2006-08-14 14:40:07 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2006-08-14 14:40:07 +0000 |
commit | 5be40e9fadbd3c5366c622d67bfc18278cf81d01 (patch) | |
tree | c2d195b31f6b9d0ed62b633fc84881bce218a756 /common/estream.h | |
parent | Added http.c from 1.4. (diff) | |
download | gnupg-5be40e9fadbd3c5366c622d67bfc18278cf81d01.tar.gz gnupg-5be40e9fadbd3c5366c622d67bfc18278cf81d01.zip |
Changed HTTP API.
Diffstat (limited to 'common/estream.h')
-rw-r--r-- | common/estream.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/common/estream.h b/common/estream.h index a9b4847c8..123a65a97 100644 --- a/common/estream.h +++ b/common/estream.h @@ -184,6 +184,10 @@ int es_fputs (const char *ES__RESTRICT s, estream_t ES__RESTRICT stream); ssize_t es_getline (char *ES__RESTRICT *ES__RESTRICT lineptr, size_t *ES__RESTRICT n, estream_t stream); +ssize_t es_read_line (estream_t stream, + char **addr_of_buffer, size_t *length_of_buffer, + size_t *max_length); +void es_free (void *a); int es_fprintf (estream_t ES__RESTRICT stream, const char *ES__RESTRICT format, ...); |