view src/lib/ostream-crlf.h @ 6410:e4eb71ae8e96 HEAD

Changed .h ifdef/defines to use <NAME>_H format.
author Timo Sirainen <tss@iki.fi>
date Sun, 16 Sep 2007 11:31:27 +0300
parents 6c0bfc35af03
children
line wrap: on
line source

#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