MySQL C API handle_options-Collection of common programming errors

I am using the handle_options function in a client program written in C that is using the MySQL API. Considering there is no actual reference to this function (to my knowledge) except the book ‘MySQL’ (or something) written by DuBois, I’m asking for help here.

So I want to process some command line arguments that aren’t mysql options. The problem is, they arguments are going to sometimes be negative numbers. The dash (-) representing the negative number gets recognised by handle_options as a mysql option and I then receive the following error message in console.

unknown OPTION '-2'

Anyone know any way to tell handle_options to only look for the options that I have defined in my my_option struct and to leave everything else prefixed with a ‘-‘ alone? Or will I have to resort to using a different symbol to represent a negative number for the command line arguments

Cheers.

Edit: This is written in/for windows.

Originally posted 2013-11-09 22:57:20.