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?
|
feedback
|
|
| |||||||||
feedback
|
|
Using For portability, you can | |||||||
feedback
|
|
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). | |||||
feedback
|
|
There is also a GNU extension for this, so that one can access the program invocation name from outside of main() without saving it manually. One might be better off doing it manually, however; thus making it portable as opposed to relying on the GNU extension. Nevertheless, I here provide an excerpt from the available documentation. From the on-line GNU C Library manual (accessed today): "Many programs that don't read input from the terminal are designed to exit if any system call fails. By convention, the error message from such a program should start with the program's name, sans directories. You can find that name in the variable
The library initialization code sets up both of these variables before calling main. Portability Note: These two variables are GNU extensions. If you want your program to work with non-GNU libraries, you must save the value of | |||
|
feedback
|
|
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. | |||
|
feedback
|