1 /* 2 * Disktest 3 * Copyright (c) International Business Machines Corp., 2001 4 * 5 * 6 * This program is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License as published by 8 * the Free Software Foundation; either version 2 of the License, or 9 * (at your option) any later version. 10 * 11 * This program is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 * GNU General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public License 17 * along with this program; if not, write to the Free Software 18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 19 * 20 * Please send e-mail to yardleyb@us.ibm.com if you have 21 * questions or comments. 22 * 23 * Project Website: TBD 24 * 25 * $Id: dump.h,v 1.5 2008/10/20 06:30:33 subrata_modak Exp $ 26 * 27 */ 28 #ifndef _DUMP_H 29 #define _DUMP_H 1 30 31 #include "main.h" 32 33 #define FMT_STR 1 34 #define FMT_RAW 2 35 36 int dump_data(FILE *, const char *, const size_t, const size_t, const size_t, const int); 37 int do_dump(child_args_t *); 38 39 #endif /* _DUMP_H */ 40 41