xref: /freebsd/lib/libc/gen/getprogname.3 (revision fa9896e082a1046ff4fbc75fcba4d18d1f2efc19)
1cd18ccdcSDima Dorfman.\"
2cd18ccdcSDima Dorfman.\" Copyright (c) 2001 Christopher G. Demetriou
3cd18ccdcSDima Dorfman.\" All rights reserved.
4cd18ccdcSDima Dorfman.\"
5cd18ccdcSDima Dorfman.\" Redistribution and use in source and binary forms, with or without
6cd18ccdcSDima Dorfman.\" modification, are permitted provided that the following conditions
7cd18ccdcSDima Dorfman.\" are met:
8cd18ccdcSDima Dorfman.\" 1. Redistributions of source code must retain the above copyright
9cd18ccdcSDima Dorfman.\"    notice, this list of conditions and the following disclaimer.
10cd18ccdcSDima Dorfman.\" 2. Redistributions in binary form must reproduce the above copyright
11cd18ccdcSDima Dorfman.\"    notice, this list of conditions and the following disclaimer in the
12cd18ccdcSDima Dorfman.\"    documentation and/or other materials provided with the distribution.
13cd18ccdcSDima Dorfman.\" 3. All advertising materials mentioning features or use of this software
14cd18ccdcSDima Dorfman.\"    must display the following acknowledgement:
15cd18ccdcSDima Dorfman.\"          This product includes software developed for the
16cd18ccdcSDima Dorfman.\"          NetBSD Project.  See http://www.netbsd.org/ for
17cd18ccdcSDima Dorfman.\"          information about NetBSD.
18cd18ccdcSDima Dorfman.\" 4. The name of the author may not be used to endorse or promote products
19cd18ccdcSDima Dorfman.\"    derived from this software without specific prior written permission.
20cd18ccdcSDima Dorfman.\"
21cd18ccdcSDima Dorfman.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22cd18ccdcSDima Dorfman.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23cd18ccdcSDima Dorfman.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24cd18ccdcSDima Dorfman.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25cd18ccdcSDima Dorfman.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26cd18ccdcSDima Dorfman.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27cd18ccdcSDima Dorfman.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28cd18ccdcSDima Dorfman.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29cd18ccdcSDima Dorfman.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30cd18ccdcSDima Dorfman.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31cd18ccdcSDima Dorfman.\"
32*1ffdcdadSMateusz Piotrowski.Dd April 18, 2021
33cd18ccdcSDima Dorfman.Dt GETPROGNAME 3
34cd18ccdcSDima Dorfman.Os
35cd18ccdcSDima Dorfman.Sh NAME
36cd18ccdcSDima Dorfman.Nm getprogname ,
37cd18ccdcSDima Dorfman.Nm setprogname
38cd18ccdcSDima Dorfman.Nd get or set the program name
39cd18ccdcSDima Dorfman.Sh LIBRARY
40cd18ccdcSDima Dorfman.Lb libc
41cd18ccdcSDima Dorfman.Sh SYNOPSIS
4232eef9aeSRuslan Ermilov.In stdlib.h
43cd18ccdcSDima Dorfman.Ft const char *
44cd18ccdcSDima Dorfman.Fn getprogname "void"
45cd18ccdcSDima Dorfman.Ft void
46cd18ccdcSDima Dorfman.Fn setprogname "const char *progname"
47cd18ccdcSDima Dorfman.Sh DESCRIPTION
48cd18ccdcSDima DorfmanThe
49cd18ccdcSDima Dorfman.Fn getprogname
50cd18ccdcSDima Dorfmanand
51cd18ccdcSDima Dorfman.Fn setprogname
52cd18ccdcSDima Dorfmanfunctions manipulate the name of the current program.
53cd18ccdcSDima DorfmanThey are used by error-reporting routines to produce
54cd18ccdcSDima Dorfmanconsistent output.
55cd18ccdcSDima Dorfman.Pp
56cd18ccdcSDima DorfmanThe
57cd18ccdcSDima Dorfman.Fn getprogname
58cd18ccdcSDima Dorfmanfunction returns the name of the program.
59cd18ccdcSDima DorfmanIf the name has not been set yet, it will return
60cd18ccdcSDima Dorfman.Dv NULL .
61cd18ccdcSDima Dorfman.Pp
62cd18ccdcSDima DorfmanThe
63cd18ccdcSDima Dorfman.Fn setprogname
64c9fa8f40SDima Dorfmanfunction sets the name of the program to be the last component of the
65c9fa8f40SDima Dorfman.Fa progname
66c9fa8f40SDima Dorfmanargument.
67cd18ccdcSDima DorfmanSince a pointer to the given string is kept as the program name,
68cd18ccdcSDima Dorfmanit should not be modified for the rest of the program's lifetime.
69cd18ccdcSDima Dorfman.Pp
70cd18ccdcSDima DorfmanIn
71cd18ccdcSDima Dorfman.Fx ,
72cd18ccdcSDima Dorfmanthe name of the program is set by the start-up code that is run before
73cd18ccdcSDima Dorfman.Fn main ;
74cd18ccdcSDima Dorfmanthus,
75cd18ccdcSDima Dorfmanrunning
76cd18ccdcSDima Dorfman.Fn setprogname
77cd18ccdcSDima Dorfmanis not necessary.
78cd18ccdcSDima DorfmanPrograms that desire maximum portability should still call it;
79cd18ccdcSDima Dorfmanon another operating system,
80cd18ccdcSDima Dorfmanthese functions may be implemented in a portability library.
81cd18ccdcSDima DorfmanCalling
82cd18ccdcSDima Dorfman.Fn setprogname
83cd18ccdcSDima Dorfmanallows the aforementioned library to learn the program name without
84cd18ccdcSDima Dorfmanmodifications to the start-up code.
85*1ffdcdadSMateusz Piotrowski.Sh EXAMPLES
86*1ffdcdadSMateusz PiotrowskiThe following example presents a simple program, which shows the difference
87*1ffdcdadSMateusz Piotrowskibetween
88*1ffdcdadSMateusz Piotrowski.Fn getprogname
89*1ffdcdadSMateusz Piotrowskiand
90*1ffdcdadSMateusz Piotrowski.Va "argv[0]" .
91*1ffdcdadSMateusz Piotrowski.Bd -literal -offset indent
92*1ffdcdadSMateusz Piotrowski#include <stdio.h>
93*1ffdcdadSMateusz Piotrowski#include <stdlib.h>
94*1ffdcdadSMateusz Piotrowski
95*1ffdcdadSMateusz Piotrowskiint
96*1ffdcdadSMateusz Piotrowskimain(int argc, char** argv)
97*1ffdcdadSMateusz Piotrowski{
98*1ffdcdadSMateusz Piotrowski	printf("getprogname(): %s\en", getprogname());
99*1ffdcdadSMateusz Piotrowski	printf("argv[0]: %s\en", argv[0]);
100*1ffdcdadSMateusz Piotrowski	return (0);
101*1ffdcdadSMateusz Piotrowski}
102*1ffdcdadSMateusz Piotrowski.Ed
103*1ffdcdadSMateusz Piotrowski.Pp
104*1ffdcdadSMateusz PiotrowskiWhen compiled and executed (e.g., with
105*1ffdcdadSMateusz Piotrowski.Ql ./a.out )
106*1ffdcdadSMateusz Piotrowskithe output of the program is going to look like this:
107*1ffdcdadSMateusz Piotrowski.Bd -literal -offset indent
108*1ffdcdadSMateusz Piotrowskigetprogname(): a.out
109*1ffdcdadSMateusz Piotrowskiargv[0]: ./a.out
110*1ffdcdadSMateusz Piotrowski.Ed
111cd18ccdcSDima Dorfman.Sh SEE ALSO
112cd18ccdcSDima Dorfman.Xr err 3 ,
113cd18ccdcSDima Dorfman.Xr setproctitle 3
114cd18ccdcSDima Dorfman.Sh HISTORY
115cd18ccdcSDima DorfmanThese functions first appeared in
116cd18ccdcSDima Dorfman.Nx 1.6 ,
117cd18ccdcSDima Dorfmanand made their way into
11886f47875SSheldon Hearn.Fx 4.4 .
119