3 * Setting the program name
5 * (c) 1998 Straylight/Edgeware
8 /*----- Licensing notice --------------------------------------------------*
10 * This file is part of the mLib utilities library.
12 * mLib is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU Library General Public License as
14 * published by the Free Software Foundation; either version 2 of the
15 * License, or (at your option) any later version.
17 * mLib is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU Library General Public License for more details.
22 * You should have received a copy of the GNU Library General Public
23 * License along with mLib; if not, write to the Free
24 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
28 /*----- Header files ------------------------------------------------------*/
32 /*----- Global variables --------------------------------------------------*/
34 const char *pn__name = "<UNNAMED>"; /* Program name */
36 /*----- Functions provided ------------------------------------------------*/
42 * Returns: Pointer to the program name.
44 * Use: Returns the program name.
47 const char *quis(void) { return (QUIS); }
51 * Arguments: @const char *p@ = pointer to program name
55 * Use: Tells mLib what the program's name is.
59 # if defined(__riscos)
61 # elif defined(__unix) || defined(unix)
68 void ego(const char *p)
82 /*----- That's all, folks -------------------------------------------------*/