diff -Naur ajax/ajreport.c ajax_emboss_report_clear_ht/ajreport.c --- ajax/ajreport.c 2004-03-08 12:56:13.000000000 +0000 +++ ajax_emboss_report_clear_ht/ajreport.c 2004-05-21 07:49:40.000000000 +0000 @@ -2599,3 +2599,38 @@ return; } + + +/* @func ajReportClearHeader ************************************************** +** +** Clears given reports header +** +** @param [r] thys [AjPReport] Report from which to clear +** @return [void] +** @@ +******************************************************************************/ + +void ajReportClearHeader (AjPReport thys) +{ + thys->Header=NULL; + + return; +} + + +/* @func ajReportClearTail ************************************************** +** +** Clears given reports tail +** +** @param [r] thys [AjPReport] Report from which to clear +** @return [void] +** @@ +******************************************************************************/ + +void ajReportClearTail (AjPReport thys) +{ + thys->Tail=NULL; + + return; +} + diff -Naur ajax/ajreport.h ajax_emboss_report_clear_ht/ajreport.h --- ajax/ajreport.h 2003-07-18 09:57:41.000000000 +0000 +++ ajax_emboss_report_clear_ht/ajreport.h 2004-05-21 07:49:40.000000000 +0000 @@ -80,6 +80,8 @@ const AjPFeattable ftable, AjPSeq seq); void ajReportWriteTail (AjPReport thys, const AjPFeattable ftable, AjPSeq seq); +void ajReportClearHeader (AjPReport thys); +void ajReportClearTail (AjPReport thys); #endif