]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - docs/man/man3/StrHashComp.3
Added docs for new smaller memory footprint classes
[user/henk/code/inspircd.git] / docs / man / man3 / StrHashComp.3
1 .TH "StrHashComp" 3 "12 May 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 156 of file modules.cpp.
21 .PP
22 .nf
23 157         {
24 158                 char a[MAXBUF],b[MAXBUF];
25 159                 strlcpy(a,s1.c_str(),MAXBUF);
26 160                 strlcpy(b,s2.c_str(),MAXBUF);
27 161                 strlower(a);
28 162                 strlower(b);
29 163                 return (strcasecmp(a,b) == 0);
30 164         }
31 .fi
32
33
34 .SH "Author"
35 .PP 
36 Generated automatically by Doxygen for InspIRCd from the source code.