proctitle.h
上传用户:tjescc
上传日期:2021-02-23
资源大小:419k
文件大小:1k
源码类别:

Telnet服务器

开发平台:

Unix_Linux

  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. #ifndef _PROCTITLE_H_
  10. #define _PROCTITLE_H_ 1
  11. #ifndef LINEBUFFER 
  12. #define LINEBUFFER 4096
  13. #endif
  14. void initsetproctitle(int argc, char *argv[], char *envp[]);
  15. /* VARARGS3 */
  16. #if !defined(HAVE_SETPROCTITLE) || !defined(HAVE_SETPROCTITLE_DEF)
  17. void setproctitle( const char *fmt, ... );
  18. void proctitle( const char *fmt, ... );
  19. #endif
  20. /* PROTOTYPES */
  21. #endif