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 * 26 * $Id: Getopt.h,v 1.5 2008/02/14 08:22:22 subrata_modak Exp $ 27 * $Log: Getopt.h,v $ 28 * Revision 1.5 2008/02/14 08:22:22 subrata_modak 29 * Disktest application update to version 1.4.2, by, Brent Yardley <yardleyb@us.ibm.com> 30 * 31 * Revision 1.3 2002/03/30 01:32:14 yardleyb 32 * Major Changes: 33 * 34 * Added Dumping routines for 35 * data miscompares, 36 * 37 * Updated performance output 38 * based on command line. Gave 39 * one decimal in MB/s output. 40 * 41 * Rewrote -pL IO routine to show 42 * correct stats. Now show pass count 43 * when using -C. 44 * 45 * Minor Changes: 46 * 47 * Code cleanup to remove the plethera 48 * if #ifdef for windows/unix functional 49 * differences. 50 * 51 * Revision 1.2 2002/02/21 21:32:19 yardleyb 52 * Added more unix compatability 53 * ifdef'd function out when 54 * compiling for unix env. that 55 * have getopt 56 * 57 * Revision 1.1 2001/12/04 18:57:36 yardleyb 58 * This source add for windows compatability only. 59 * 60 */ 61 #ifdef WINDOWS 62 int getopt(int argc, char** argv, char* pszValidOpts); 63 #endif /* defined WINDOWS */ 64