File: timer.h

package info (click to toggle)
epic 3.004-17.1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 5,192 kB
  • ctags: 3,197
  • sloc: ansic: 40,843; makefile: 530; sh: 129; perl: 17
file content (16 lines) | stat: -rw-r--r-- 442 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * timer.h: header for timer.c 
 * See the COPYRIGHT file, or do a HELP IRCII COPYRIGHT 
 */

#ifndef _TIMER_H_
#define _TIMER_H_

/* functions that may be called by others */
extern	void	timercmd _((char *, char *, char *));
extern	void	ExecuteTimers _((void));
extern	char *	add_timer _((char *, long, int (*) (void *), char *, char *));
extern	int	delete_timer _((char *));
extern	time_t	TimerTimeout _((void));

#endif /* _TIMER_H_ */