clamd/tests.c
b151ef55
 /*
  *  Copyright (C) 2002 Tomasz Kojm <zolw@konarski.edu.pl>
  *
  *  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., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
8b242bb9
 #if HAVE_CONFIG_H
 #include "clamav-config.h"
 #endif
 
b151ef55
 #include <stdio.h>
 #include <string.h>
 #include <clamav.h>
 
 int testsignature(const struct cl_node *root)
 {
 	char test[50] = "$CEliacmaTrESTuScikgsn#FREE-TEST-SIGNATURE$EEEEE$";
 
     test[22] = '$'; /* additional protection */
     test[49] = 10;
     return (cl_scanbuff(test, 50, NULL, root) == CL_VIRUS) ? 1 : 0;
 }