1 /* GNU Mailutils -- a suite of utilities for electronic mail
2    Copyright (C) 2009-2021 Free Software Foundation, Inc.
3 
4    This library is free software; you can redistribute it and/or modify
5    it under the terms of the GNU Lesser General Public License as published by
6    the Free Software Foundation; either version 3, or (at your option)
7    any later version.
8 
9    This library is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU Lesser General Public License for more details.
13 
14    You should have received a copy of the GNU Lesser General Public License
15    along with GNU Mailutils.  If not, see <http://www.gnu.org/licenses/>. */
16 
17 #ifndef _MAILUTILS_SYS_HEADER_STREAM_H
18 #define _MAILUTILS_SYS_HEADER_STREAM_H
19 
20 #include <mailutils/header.h>
21 #include <mailutils/sys/stream.h>
22 
23 struct _mu_header_stream
24 {
25   struct _mu_stream stream;
26   mu_header_t hdr;
27   mu_off_t off;
28 };
29 
30 #endif
31