代码搜索:Testing
找到约 10,000 项符合「Testing」的源代码
代码结果 10,000
www.eeworm.com/read/367990/9721000
c strieql.c
#include
#include
int strieql(char *str1, char *str2)
{
while ((toupper(*str1) == toupper(*str2)) && (*str1))
{
str1++;
str2++;
}
return
www.eeworm.com/read/171829/9736083
c strieql.c
#include
#include
int strieql(char *str1, char *str2)
{
while ((toupper(*str1) == toupper(*str2)) && (*str1))
{
str1++;
str2++;
}
return
www.eeworm.com/read/171829/9736096
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/171387/9758301
c ch06test.c
/* ____________________________________________________________________
*
* Copyright (c) 2003, Andrew N. Sloss, Dominic Symes, Chris Wright
* All rights reserved.
* __________________________
www.eeworm.com/read/367160/9776977
makefile
#######################################################################
# This makefile runs the test programs for the linear equation routines
# and the eigenvalue routines in LAPACK. The test o
www.eeworm.com/read/265447/11264076
out 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/147407/12554494
c strieql.c
#include
#include
int strieql(char *str1, char *str2)
{
while ((toupper(*str1) == toupper(*str2)) && (*str1))
{
str1++;
str2++;
}
return
www.eeworm.com/read/147407/12554589
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/334304/12613482
m denfiss.m
% Dynamic Evolving Neural-Fuzzy Inference System: DENFIS Simulating Function
%================================================================================
%= Function Name: denfiss.m
www.eeworm.com/read/238320/13893487
c streql.c
#include
int streql(char *str1, char *str2)
{
while ((*str1 == *str2) && (*str1))
{
str1++;
str2++;
}
return((*str1 == NULL) && (*str2 == NULL));