clamav/libclamav/text.h

63 lines
1.9 KiB
C
Raw Normal View History

2003-07-29 15:48:06 +00:00
/*
2025-02-14 10:24:30 -05:00
* Copyright (C) 2013-2025 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
* Copyright (C) 2007-2013 Sourcefire, Inc.
*
* Authors: Nigel Horne
2003-07-29 15:48:06 +00:00
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
2003-07-29 15:48:06 +00:00
*
* 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
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*
* $Log: text.h,v $
2006-07-01 16:21:03 +00:00
* Revision 1.9 2006/07/01 16:17:35 njh
* Added destroy flag
*
* Revision 1.8 2006/04/09 19:59:28 kojm
* update GPL headers with new address for FSF
*
* Revision 1.7 2004/12/04 16:03:55 nigelhorne
* Text/plain now handled as no encoding
*
2004-08-22 10:37:32 +00:00
* Revision 1.6 2004/08/22 10:34:24 nigelhorne
* Use fileblob
*
2004-08-21 12:01:07 +00:00
* Revision 1.5 2004/08/21 11:57:57 nigelhorne
* Use line.[ch]
*
* Revision 1.4 2004/07/20 14:35:29 nigelhorne
* Some MYDOOM.I were getting through
*
* Revision 1.3 2004/06/22 04:08:02 nigelhorne
* Optimise empty lines
*
2003-07-29 15:48:06 +00:00
*/
2009-09-24 16:08:52 +02:00
#ifndef __TEXT_H
#define __TEXT_H
/* The contents could change, ONLY access in text.c */
2003-07-29 15:48:06 +00:00
typedef struct text {
line_t *t_line; /* NULL if the line is empty */
struct text *t_next;
2003-07-29 15:48:06 +00:00
} text;
#include "message.h"
void textDestroy(text *t_head);
text *textAddMessage(text *aText, message *aMessage);
text *textMove(text *t_head, text *t);
blob *textToBlob(text *t, blob *b, int destroy);
fileblob *textToFileblob(text *t, fileblob *fb, int destroy);
2009-09-24 16:08:52 +02:00
#endif /* __TEXT_H */