OpenVAS Libraries
4.0+rc3.SVN
|
00001 /*************************************************************************** 00002 * LPRng - An Extended Print Spooler System 00003 * 00004 * Copyright 1988-2002, Patrick Powell, San Diego, CA 00005 * papowell@lprng.com 00006 * See LICENSE for conditions of use. 00007 * $Id: proctitle.h,v 1.1 2002/12/14 12:34:42 renaud Exp $ 00008 ***************************************************************************/ 00009 00010 /* The "LICENSE" file of LPRng states: 00011 00012 "* You may use "LPRng" or "IFHP" under either the terms of the GNU 00013 GPL License or the Artistc License. These licenses are included 00014 below. The licenses were obtained from the http://www.opensource.org 00015 web site on 28 Aug 2003". 00016 00017 The included license is GNU General Public License Version 2. 00018 */ 00019 00020 #ifndef _PROCTITLE_H_ 00021 #define _PROCTITLE_H_ 1 00022 00023 #ifndef LINEBUFFER 00024 #define LINEBUFFER 4096 00025 #endif 00026 00027 void initsetproctitle (int argc, char *argv[], char *envp[]); 00028 void setproctitle (const char *fmt, ...); 00029 void proctitle (const char *fmt, ...); 00030 00031 #endif