00001 #ifndef _GETOPT_H_ 00002 #define _GETOPT_H_ 00003 00004 /* 00005 * $Id: getopt.h,v 1.2 2003/01/24 12:01:21 przemko Exp $ 00006 */ 00007 00008 /* 00009 * $Log: getopt.h,v $ 00010 * Revision 1.2 2003/01/24 12:01:21 przemko 00011 * Obciecie dosowych znakow konca lini 00012 * 00013 * Revision 1.1.1.1 2002/12/07 07:16:51 marwi 00014 * 00015 * 00016 * Revision 1.1 2002/08/08 16:24:05 harald 00017 * *** empty log message *** 00018 * 00019 */ 00020 00021 #ifdef __cplusplus 00022 extern "C" { 00023 #endif 00024 00025 extern int getopt(int argc, char **argv, char *opts); 00026 00027 extern int optind; 00028 extern char *optarg; 00029 00030 #ifdef __cplusplus 00031 } 00032 #endif 00033 00034 #endif