clamav-devel/libclamav/unrar/unrar20.h
680b819e
 /*
  *  Extract RAR archives
  *
  *  Copyright (C) 2005 trog@uncon.org
  *
  *  This code is based on the work of Alexander L. Roshal
  *
  *  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
48b7b4a7
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  *  MA 02110-1301, USA.
680b819e
  */
 
513e1cdd
 #ifndef UNRAR20_H
 #define UNRAR20_H 1
 
 #define BC20 19
 #define DC20 48
 #define RC20 28
 #define MC20 257
 #define NC20 298  /* alphabet = {0, 1, 2, ..., NC - 1} */
 
 void unpack_init_data20(int solid, unpack_data_t *unpack_data);
 int rar_unpack20(int fd, int solid, unpack_data_t *unpack_data);
 
 #endif