chiark / gitweb /
*** empty log message ***
[mLib] / quis.h
CommitLineData
0875b58f 1/* -*-c-*-
2 *
3 * $Id: quis.h,v 1.1 1998/06/17 23:44:42 mdw Exp $
4 *
5 * Setting the program name
6 *
7 * (c) 1998 Straylight/Edgeware
8 */
9
10/*----- Licensing notice --------------------------------------------------*
11 *
12 * This file is part of the mLib utilities library.
13 *
14 * mLib is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
18 *
19 * mLib is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with mLib; if not, write to the Free Software Foundation,
26 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27 */
28
29/*----- Revision history --------------------------------------------------*
30 *
31 * $Log: quis.h,v $
32 * Revision 1.1 1998/06/17 23:44:42 mdw
33 * Initial revision
34 *
35 */
36
37#ifndef PROGNAME_H
38#define PROGNAME_H
39
40#ifdef __cplusplus
41 extern "C" {
42#endif
43
44/*----- Global variables --------------------------------------------------*/
45
46extern const char *pn__name;
47
48/*----- Functions provided ------------------------------------------------*/
49
50/* --- @quis@ --- *
51 *
52 * Arguments: ---
53 *
54 * Returns: Pointer to the program name.
55 *
56 * Use: Returns the program name.
57 */
58
59extern const char *quis(void);
60#define QUIS (pn__name)
61
62/* --- @ego@ --- *
63 *
64 * Arguments: @const char *p@ = pointer to program name
65 *
66 * Returns: ---
67 *
68 * Use: Tells mLib what the program's name is.
69 */
70
71extern void ego(const char */*p*/);
72
73/*----- That's all, folks -------------------------------------------------*/
74
75#ifdef __cplusplus
76 }
77#endif
78
79#endif