7 /* convert record stream to stream-lf format
11 /* rec2stream reads a record stream from standard input and
12 /* writes the content to standard output in stream-lf format.
14 /* Problems are reported to the standard error stream.
18 /* The Secure Mailer license must be distributed with this software.
21 /* IBM T.J. Watson Research
23 /* Yorktown Heights, NY 10598, USA
30 /* Utility library. */
38 #include <rec_streamlf.h>
42 VSTRING
*buf
= vstring_alloc(100);
45 while ((type
= rec_get(VSTREAM_IN
, buf
, 0)) > 0)
46 REC_STREAMLF_PUT_BUF(VSTREAM_OUT
, type
, buf
);
47 vstream_fflush(VSTREAM_OUT
);