Tokens that begin with two underscores __* or an underscore and an uppercase letter _X* are reserved, so we should avoid those for our own include guards. The standard I'm settling on for foo.h is FOO_H_.
25 lines
514 B
C
25 lines
514 B
C
/*
|
|
* hold.h: header for hold.c
|
|
*
|
|
* Written By Michael Sandrof
|
|
*
|
|
* Copyright(c) 1990
|
|
*
|
|
* See the COPYRIGHT file, or do a HELP IRCII COPYRIGHT
|
|
*
|
|
* @(#)$Id$
|
|
*/
|
|
#ifndef HOLD_H_
|
|
#define HOLD_H_
|
|
|
|
void remove_from_hold_list (Window *);
|
|
void add_to_hold_list (Window *, char *, int);
|
|
void hold_mode (Window *, int, int);
|
|
int hold_output (Window *);
|
|
char *hold_queue (Window *);
|
|
void reset_hold (Window *);
|
|
int hold_queue_logged (Window *);
|
|
void toggle_stop_screen (char, char *);
|
|
|
|
#endif /* HOLD_H_ */
|