File: notice.h

package info (click to toggle)
epic 3.004-10
  • links: PTS
  • area: main
  • in suites: slink
  • size: 5,180 kB
  • ctags: 3,207
  • sloc: ansic: 40,836; makefile: 526; sh: 121; perl: 17
file content (21 lines) | stat: -rw-r--r-- 386 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * notice.h -- header file for notice.c
 *
 * IRC-II (C) 1990, 1995 Michael Sandroff, Matthew Green
 *
 */

#ifndef __notice_h
#define __notice_h

#include "irc.h"
#include "config.h"

extern void parse_notice _((char *, char **));
extern void got_initial_version_28 _((char **));
#ifdef COMPAT_27
extern void got_initial_version _((char *));
#endif
extern int doing_notice;

#endif