bool isEqual ( const char *  first,
const char *  second,
int  length 
)

Definition at line 22 of file compare.cpp.

00022                                                                {
00023         /*declaration block*/
00024         int i = 0;
00025         /*do the string compare*/
00026         while ( i < length ) {
00027                 if ( first[i] != second[i] ) {
00028                         return false;
00029                 }
00030                 i++;
00031         }
00032         return true;
00033 }


Generated on Wed Jun 25 14:46:44 2008 for keyvil by  doxygen 1.5.1