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.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
If all you need to do is get the command line arguments in Cocoa, you can do:
|
|||||
|
|
You can also access the commandline arguments using You basically get an The official Apple documentation can be found here. |
||||
|
|
|
As those functions are prefixed with an "_", that's usually a sign that they are private, and not meant to be used by you. If you need to get the command line arguments, a better way to do it would be to look up NSProcessInfo. |
|||||
|