rabinpoly.hon commit Merge branch 'js/diffstat' into next (07512ea)
   1/*
   2 *
   3 * Copyright (C) 2000 David Mazieres (dm@uun.org)
   4 *
   5 * This program is free software; you can redistribute it and/or
   6 * modify it under the terms of the GNU General Public License as
   7 * published by the Free Software Foundation; either version 2, or (at
   8 * your option) any later version.
   9 *
  10 * This program is distributed in the hope that it will be useful, but
  11 * WITHOUT ANY WARRANTY; without even the implied warranty of
  12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13 * General Public License for more details.
  14 *
  15 * You should have received a copy of the GNU General Public License
  16 * along with this program; if not, write to the Free Software
  17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
  18 * USA
  19 *
  20 * Translated to C and simplified by Geert Bosch (bosch@gnat.com)
  21 */
  22
  23#include <assert.h>
  24#include <strings.h>
  25#include <sys/types.h>
  26
  27#ifndef RABIN_WINDOW_SIZE
  28#define RABIN_WINDOW_SIZE 48
  29#endif
  30void rabin_reset();
  31u_int64_t rabin_slide8(u_char c);