]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - docs/man/man3/StrHashComp.3
Changed parameters of OnPacketTransmit and OnPacketReceive to be much more useful
[user/henk/code/inspircd.git] / docs / man / man3 / StrHashComp.3
1 .TH "StrHashComp" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
2 .ad l
3 .nh
4 .SH NAME
5 StrHashComp \- 
6 .SH SYNOPSIS
7 .br
8 .PP
9 .SS "Public Member Functions"
10
11 .in +1c
12 .ti -1c
13 .RI "bool \fBoperator()\fP (const string &s1, const string &s2) const"
14 .br
15 .in -1c
16 .SH "Member Function Documentation"
17 .PP 
18 .SS "bool StrHashComp::operator() (const string & s1, const string & s2) const\fC [inline]\fP"
19 .PP
20 Definition at line 146 of file modules.cpp.
21 .PP
22 .nf
23 147         {
24 148                 char a[MAXBUF],b[MAXBUF];
25 149                 strlcpy(a,s1.c_str(),MAXBUF);
26 150                 strlcpy(b,s2.c_str(),MAXBUF);
27 151                 return (strcasecmp(a,b) == 0);
28 152         }
29 .fi
30
31
32 .SH "Author"
33 .PP 
34 Generated automatically by Doxygen for InspIRCd from the source code.