In the C / Unix environment I work in, I see some developers using __progname instead of argv[0] for usage() messages. Is there some advantage to this? What's the difference between __progname and argv[0]. Is it portable?
|
|
|
|
|
|
|
__progname isn't standard and therefore not portable, prefer argv[0]. I suppose __progname could lookup a string resource to get the name which isn't dependent on the filename you ran it as. But argv[0] will give you the name they actually ran it as which I would find more useful. |
||||
|
|
|
Using For portability, you can |
||||
|
|
|
It's a BSDism, and definitely not portable. |
||
|
|
|
|
I see at least two potential problems with argv[0]. First, argv[0] or argv itself may be NULL if execve() caller was evil or careless enough. Calling execve("foobar", NULL, NULL) is usually an easy and fun way to prove an over confident programmer his code is not sig11-proof. It must also be noted that argv will not be defined outside of main() while __progname is usually defined as a global variable you can use from within your usage() function or even before main() is called (like non standard GCC constructors). |
||
|
|
|
If your program was run using, for instance, a symbolic link, argv[0] will contain the name of that link. I'm guessing that __progname will contain the name of the actual program file. In any case, argv[0] is defined by the C standard. __progname is not. |
||
|
|
