Is there any complete documentation (the interface is present in crt_externs.h
) about this functions :
_NSGetArgc
and _NSGetArgv
I can't get any documentation on the apple website about this functions.
If all you need to do is get the command line arguments in Cocoa, you can do:
NSArray *arguments = [[NSProcessInfo processInfo] arguments];