libclamav/text.h
e3aaff8e
 /*
2023340a
  *  Copyright (C) 2007-2008 Sourcefire, Inc.
  *
  *  Authors: Nigel Horne
e3aaff8e
  *
  *  This program is free software; you can redistribute it and/or modify
2023340a
  *  it under the terms of the GNU General Public License version 2 as
  *  published by the Free Software Foundation.
e3aaff8e
  *
  *  This program is distributed in the hope that it will be useful,
  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
  *  along with this program; if not, write to the Free Software
48b7b4a7
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  *  MA 02110-1301, USA.
02927896
  *
  * $Log: text.h,v $
2673dc74
  * Revision 1.9  2006/07/01 16:17:35  njh
  * Added destroy flag
  *
48b7b4a7
  * Revision 1.8  2006/04/09 19:59:28  kojm
  * update GPL headers with new address for FSF
  *
8a892c3b
  * Revision 1.7  2004/12/04 16:03:55  nigelhorne
  * Text/plain now handled as no encoding
  *
0e5a0129
  * Revision 1.6  2004/08/22 10:34:24  nigelhorne
  * Use fileblob
  *
b2223aad
  * Revision 1.5  2004/08/21 11:57:57  nigelhorne
  * Use line.[ch]
  *
0c0894b8
  * Revision 1.4  2004/07/20 14:35:29  nigelhorne
  * Some MYDOOM.I were getting through
  *
02927896
  * Revision 1.3  2004/06/22 04:08:02  nigelhorne
  * Optimise empty lines
  *
e3aaff8e
  */
 
be4bf7f4
 #ifndef __TEXT_H
 #define __TEXT_H
 
30e18caf
 /* The contents could change, ONLY access in text.c */
e3aaff8e
 typedef struct text {
b2223aad
 	line_t	*t_line;	/* NULL if the line is empty */
e3aaff8e
 	struct	text	*t_next;
 } text;
 
 #include "message.h"
 
 void	textDestroy(text *t_head);
0c0894b8
 text	*textAddMessage(text *aText, message *aMessage);
30e18caf
 text	*textMove(text *t_head, text *t);
2673dc74
 blob	*textToBlob(text *t, blob *b, int destroy);
 fileblob	*textToFileblob(text *t, fileblob *fb, int destroy);
be4bf7f4
 
 #endif /* __TEXT_H */