OpenVAS Libraries  6.0+beta5
proctitle.h
Go to the documentation of this file.
1 /***************************************************************************
2  * LPRng - An Extended Print Spooler System
3  *
4  * Copyright 1988-2002, Patrick Powell, San Diego, CA
5  * papowell@lprng.com
6  * See LICENSE for conditions of use.
7  * $Id: proctitle.h,v 1.1 2002/12/14 12:34:42 renaud Exp $
8  ***************************************************************************/
9 
10 /* The "LICENSE" file of LPRng states:
11 
12  "* You may use "LPRng" or "IFHP" under either the terms of the GNU
13  GPL License or the Artistc License. These licenses are included
14  below. The licenses were obtained from the http://www.opensource.org
15  web site on 28 Aug 2003".
16 
17  The included license is GNU General Public License Version 2.
18 */
19 
20 #ifndef _PROCTITLE_H_
21 #define _PROCTITLE_H_ 1
22 
23 #ifndef LINEBUFFER
24 #define LINEBUFFER 4096
25 #endif
26 
27 void initsetproctitle (int argc, char *argv[], char *envp[]);
28 void setproctitle (const char *fmt, ...);
29 void proctitle (const char *fmt, ...);
30 
31 #endif