blob: 73dd4c51e243c61a1f0758aae878d523227c092c (
plain)
1
2
3
4
5
6
7
|
#ifndef ISTREAM_NONULS_H
#define ISTREAM_NONULS_H
/* Translate all NUL characters to the specified replace_chr. */
struct istream *i_stream_create_nonuls(struct istream *input, char replace_chr);
#endif
|