ostream-crlf.h revision c25356d5978632df6203437e1953bcb29e0c736f
#ifndef OSTREAM_CRLF_H
#define OSTREAM_CRLF_H
/* Replace all plain LFs with CRLF. */
struct ostream *o_stream_create_crlf(struct ostream *output);
/* Replace all CRLF pairs with plain LFs. */
struct ostream *o_stream_create_lf(struct ostream *output);
#endif