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 */ 00017 00018 #ifdef __cplusplus 00019 extern "C" { 00020 #endif 00021 00022 extern int getopt(int argc, char **argv, char *opts); 00023 00024 extern int optind; 00025 extern char *optarg; 00026 00027 #ifdef __cplusplus 00028 } 00029 #endif 00030 00031 #endif