1/***************************************************************************
2 * LPRng - An Extended Print Spooler System
3 *
4 * Copyright 1988-2003, Patrick Powell, San Diego, CA
5 *     papowell@lprng.com
6 * See LICENSE for conditions of use.
7 * $Id: proctitle.h,v 1.1.1.1 2008/10/15 03:28:27 james26_jang Exp $
8 ***************************************************************************/
9
10
11
12#ifndef _PROCTITLE_H_
13#define _PROCTITLE_H_ 1
14
15
16void initsetproctitle(int argc, char *argv[], char *envp[]);
17/* VARARGS3 */
18#if !defined(HAVE_SETPROCTITLE) || !defined(HAVE_SETPROCTITLE_DEF)
19#  ifdef HAVE_STDARGS
20void setproctitle( const char *fmt, ... );
21void proctitle( const char *fmt, ... );
22#  else
23void setproctitle();
24void proctitle();
25#  endif
26#endif
27
28/* PROTOTYPES */
29#endif
30