Tagged Questions
6
votes
6answers
4k views
Using '__progname' instead of argv[0]
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 ...