Chainsaw / scripts /stride /p_jrnl.c
wuxing0105's picture
Upload folder using huggingface_hub
80a72c3 verified
Raw
History Blame Contribute Delete
318 Bytes
#include "stride.h"
int Process_JRNL(BUFFER Buffer, BOOLEAN *Published)
{
char *Field[MAX_FIELD];
SplitString(Buffer,Field,10);
if( !strncmp(Field[1],"REF",3) && !strncmp(Field[2],"TO",2) &&
!strncmp(Field[3],"BE",2) && !strncmp(Field[4],"PUBLISHED",9) )
*Published = NO;
return(SUCCESS);
}