vote up 2 vote down star

I'm quite fond of using GNU getopt, when programming under Linux. I understand, that getopt(), is not available under MS VC++.

Note:

  • Win32 environment
  • using Visual Studio
  • No Boost
  • No MFC
  • Not concerned with portability

Question:

  • How can I then port getopt() accordingly?
    • What guidelines should I be aware of while porting?
  • Known port with same features?
flag

2 Answers

vote up 0 vote down check

You will have to check out the license requirements, but the source to the GCC libraries is freely available. Just grab getopt() from there.

link|flag
vote up 1 vote down

This may help, it's also very easy to integrate

http://www.codeproject.com/KB/cpp/xgetopt.aspx

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.