view src/lib/istream-crlf.h @ 9451:9fff30644260 HEAD

istream-concat: Fixed a lot of bugs.
author Timo Sirainen <tss@iki.fi>
date Mon, 26 Oct 2009 17:06:57 -0400
parents ba65c858b7dd
children
line wrap: on
line source

#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