Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
brlcad / usr / brlcad / include / stepcode / base / sc_getopt.h
Size: Mime:
/****** RENAMED from xgetopt.h to sc_getopt.h ***********/
// XGetopt.h  Version 1.2
//
// Author:  Hans Dietrich
//          hdietrich2@hotmail.com
//
// This software is released into the public domain.
// You are free to use it in any way you like.
//
// This software is provided "as is" with no expressed
// or implied warranty.  I accept no liability for any
// damage or loss of business that this software may cause.
//
///////////////////////////////////////////////////////////////////////////////

#ifndef XGETOPT_H
#define XGETOPT_H
#include "sc_export.h"

#ifdef __cplusplus
extern "C" {
#endif

    extern SC_BASE_EXPORT int optind, opterr;
    extern SC_BASE_EXPORT char * optarg;

    int    SC_BASE_EXPORT sc_getopt( int argc, char * argv[], char * optstring );

#ifdef __cplusplus
}
#endif

#endif //XGETOPT_H