/* * Copyright (C) 2001 faster (lqx@cic.tsinghua.edu.cn) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "common/setup_before.h" #include "setup.h" #include #ifdef STDC_HEADERS # include #else # ifdef HAVE_MALLOC_H # include # endif #endif #ifdef HAVE_STRING_H # include #else # ifdef HAVE_STRINGS_H # include # endif # ifdef HAVE_MEMORY_H # include # endif #endif #include "compat/strcasecmp.h" #include #ifdef HAVE_LIMITS_H # include #endif #include "dbsdupecheck.h" #include "common/setup_after.h" #include "common/bn_type.h" #include "common/eventlog.h" const char * delimiter = "JM"; int is_delimit(char * data) { if ((data[0]==delimiter[0]) && (data[1]==delimiter[1])) return 1; else return 0; } void * find_delimiter(char * data, unsigned int datalen) { char * datap = data; unsigned int count; for (count=1; count