blob: 1ed44c658866799acd5e385adec4fc70deae1957 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef ISTREAM_CRLF_H
#define ISTREAM_CRLF_H
/* Read all linefeeds as CRLF */
struct istream *i_stream_create_crlf(struct istream *input);
/* Read all linefeeds as LF */
struct istream *i_stream_create_lf(struct istream *input);
#endif
|