代码搜索:Testing
找到约 10,000 项符合「Testing」的源代码
代码结果 10,000
www.eeworm.com/read/315631/13539475
c streql.c
#include
int streql(char *str1, char *str2)
{
while ((*str1 == *str2) && (*str1))
{
str1++;
str2++;
}
return((*str1 == NULL) && (*str2 == NULL));
www.eeworm.com/read/315631/13539478
c strieql.c
#include
#include
int strieql(char *str1, char *str2)
{
while ((toupper(*str1) == toupper(*str2)) && (*str1))
{
str1++;
str2++;
}
return
www.eeworm.com/read/314413/13568345
changelog
$Log: CHANGELOG,v $
Revision 1.17 2006/05/19 19:12:26 jain
Checking in version 1.3.2. Included bug fixes only
Revision 1.15 2004/04/17 01:01:05 jain
*** empty log message ***
Revision 2004/04/1
www.eeworm.com/read/309349/13673648
mod2convert-test-out
Creating sparse matrix.
Converting from sparse to dense.
Converting back to dense again.
Testing for equality of two sparse matrices: OK.
Converting to dense once again.
Testing for equality of two d
www.eeworm.com/read/308442/13701214
c streql.c
#include
int streql(char *str1, char *str2)
{
while ((*str1 == *str2) && (*str1))
{
str1++;
str2++;
}
return((*str1 == NULL) && (*str2 == NULL));
www.eeworm.com/read/308442/13701217
c strieql.c
#include
#include
int strieql(char *str1, char *str2)
{
while ((toupper(*str1) == toupper(*str2)) && (*str1))
{
str1++;
str2++;
}
return
www.eeworm.com/read/301198/13864007
c streql.c
#include
int streql(char *str1, char *str2)
{
while ((*str1 == *str2) && (*str1))
{
str1++;
str2++;
}
return((*str1 == NULL) && (*str2 == NULL));
www.eeworm.com/read/301198/13864010
c strieql.c
#include
#include
int strieql(char *str1, char *str2)
{
while ((toupper(*str1) == toupper(*str2)) && (*str1))
{
str1++;
str2++;
}
return
www.eeworm.com/read/151482/5682717
java pathmatchertests.java
/*
* Copyright 2002-2005 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.