postgresql/src/include/utils/ps_status.h
Bruce Momjian 6783b2372e Another pgindent run. Fixes enum indenting, and improves #endif
spacing.  Also adds space for one-line comments.
2001-10-28 06:26:15 +00:00

25 lines
614 B
C

/*-------------------------------------------------------------------------
*
* ps_status.h
*
* Declarations for backend/utils/misc/ps_status.c
*
* $Id: ps_status.h,v 1.22 2001/10/28 06:26:09 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef PS_STATUS_H
#define PS_STATUS_H
extern void save_ps_display_args(int argc, char *argv[]);
extern void init_ps_display(const char *username, const char *dbname,
const char *host_info);
extern void set_ps_display(const char *activity);
extern const char *get_ps_display(void);
#endif /* PS_STATUS_H */