view src/lib/istream-crlf.h @ 22664:fea53c2725c0

director: Fix director_max_parallel_moves/kicks type Should be uint, not time.
author Timo Sirainen <timo.sirainen@dovecot.fi>
date Thu, 09 Nov 2017 12:24:16 +0200
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