share/mk/: Fix includes
[man-pages.git] / man3 / program_invocation_name.3
blobf4b442d8a7d53a7928aec4f27353e0aca0ee5ab8
1 .\" Copyright (C) 2006 Michael Kerrisk <mtk.manpages@gmail.com>
2 .\"
3 .\" %%%LICENSE_START(PERMISSIVE_MISC)
4 .\" Permission is hereby granted, free of charge, to any person obtaining
5 .\" a copy of this software and associated documentation files (the
6 .\" "Software"), to deal in the Software without restriction, including
7 .\" without limitation the rights to use, copy, modify, merge, publish,
8 .\" distribute, sublicense, and/or sell copies of the Software, and to
9 .\" permit persons to whom the Software is furnished to do so, subject to
10 .\" the following conditions:
11 .\"
12 .\" The above copyright notice and this permission notice shall be
13 .\" included in all copies or substantial portions of the Software.
14 .\"
15 .\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 .\" EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 .\" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
18 .\" IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
19 .\" CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
20 .\" TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
21 .\" SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 .\" %%%LICENSE_END
23 .\"
24 .TH program_invocation_name 3 (date) "Linux man-pages (unreleased)"
25 .SH NAME
26 program_invocation_name, program_invocation_short_name \- \
27 obtain name used to invoke calling program
28 .SH LIBRARY
29 Standard C library
30 .RI ( libc ", " \-lc )
31 .SH SYNOPSIS
32 .nf
33 .BR "#define _GNU_SOURCE" "         /* See feature_test_macros(7) */"
34 .B #include <errno.h>
36 .BI "extern char *" program_invocation_name ;
37 .BI "extern char *" program_invocation_short_name ;
38 .fi
39 .SH DESCRIPTION
40 .I program_invocation_name
41 contains the name that was used to invoke the calling program.
42 This is the same as the value of
43 .I argv[0]
45 .IR main (),
46 with the difference that the scope of
47 .I program_invocation_name
48 is global.
50 .I program_invocation_short_name
51 contains the basename component of name that was used to invoke
52 the calling program.
53 That is, it is the same value as
54 .IR program_invocation_name ,
55 with all text up to and including the final slash (/), if any, removed.
57 These variables are automatically initialized by the glibc run-time
58 startup code.
59 .SH VERSIONS
60 The Linux-specific
61 .IR /proc/ pid /cmdline
62 file provides access to similar information.
63 .SH STANDARDS
64 GNU.
65 .SH SEE ALSO
66 .BR proc (5)