have just incorporated getopt
into my main()
func
getopt
sets the global variable optarg
for each call
stepping through main()
with gdb
, after getopt()
call optarg
is always NULL
(e.g. (gdb) p optarg
) yet printf("%s\n", optarg)
outputs the cmd line arg as expected
whats going on? why are the two not the same?
Is this an isue with gdb and how it trys to inspect globals or is something else going on?
Probably related: Bug 13800 - gdb does not print right values of getopt-related values
Also notice ie:
Where: