File: s_misc_ext.h

package info (click to toggle)
ircd-irc2 2.11.2p2%2Bdfsg-2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 3,136 kB
  • sloc: ansic: 39,088; sh: 3,287; makefile: 379
file content (58 lines) | stat: -rw-r--r-- 2,168 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/************************************************************************
 *   IRC - Internet Relay Chat, ircd/s_misc_ext.h
 *   Copyright (C) 1997 Alain Nissen
 *
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation; either version 1, or (at your option)
 *   any later version.
 *
 *   This program is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with this program; if not, write to the Free Software
 *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

/*  This file contains external definitions for global variables and functions
    defined in ircd/s_misc.c.
 */

/*  External definitions for global variables.
 */
#ifndef S_MISC_C
extern struct stats ircst, *ircstp;
extern aMotd *motd;
extern time_t motd_mtime;
#endif /* S_MISC_C */

/*  External definitions for global functions.
 */
#ifndef S_MISC_C
#define EXTERN extern
#else /* S_MISC_C */
#define EXTERN
#endif /* S_MISC_C */
EXTERN char *date (time_t clock);
EXTERN int check_registered_user (aClient *sptr);
EXTERN int check_registered (aClient *sptr);
EXTERN int check_registered_service (aClient *sptr);
EXTERN char *get_client_name (aClient *sptr, int showip);
EXTERN char *get_client_host (aClient *cptr);
EXTERN void get_sockhost (Reg aClient *cptr, Reg char *host);
EXTERN char *my_name_for_link (char *name, Reg int count);
EXTERN int mark_blind_servers (aClient *cptr, aClient *server);
EXTERN int exit_client (aClient *cptr, aClient *sptr, aClient *from,
			    const char *comment);
EXTERN void checklist(void);
EXTERN void initstats(void);
EXTERN void initruntimeconf(void);
EXTERN void tstats (aClient *cptr, char *name);
EXTERN void read_motd (char *filename);
EXTERN void check_split(void);
EXTERN int myrand(void);
EXTERN void mysrand(unsigned int seed);
#undef EXTERN