代码搜索结果

找到约 10,000 项符合 I 的代码

i_indx.c

#include "f2c.h" #ifdef __cplusplus extern "C" { #endif #ifdef KR_headers integer i_indx(a, b, la, lb) char *a, *b; ftnlen la, lb; #else integer i_indx(char *a, char *b, ftnlen la, ftnlen lb) #endif

i_dnnt.c

#include "f2c.h" #ifdef KR_headers double floor(); integer i_dnnt(x) doublereal *x; #else #undef abs #include "math.h" #ifdef __cplusplus extern "C" { #endif integer i_dnnt(doublereal *x) #endif { re

i_sign.c

#include "f2c.h" #ifdef __cplusplus extern "C" { #endif #ifdef KR_headers integer i_sign(a,b) integer *a, *b; #else integer i_sign(integer *a, integer *b) #endif { integer x; x = (*a >= 0 ? *a : - *a

i_abs.c

#include "f2c.h" #ifdef __cplusplus extern "C" { #endif #ifdef KR_headers integer i_abs(x) integer *x; #else integer i_abs(integer *x) #endif { if(*x >= 0) return(*x); return(- *x); } #ifdef __cplus

i_len.c

#include "f2c.h" #ifdef __cplusplus extern "C" { #endif #ifdef KR_headers integer i_len(s, n) char *s; ftnlen n; #else integer i_len(char *s, ftnlen n) #endif { return(n); } #ifdef __cplusplus } #end

i_dim.c

#include "f2c.h" #ifdef __cplusplus extern "C" { #endif #ifdef KR_headers integer i_dim(a,b) integer *a, *b; #else integer i_dim(integer *a, integer *b) #endif { return( *a > *b ? *a - *b : 0); } #if

i_mod.c

#include "f2c.h" #ifdef __cplusplus extern "C" { #endif #ifdef KR_headers integer i_mod(a,b) integer *a, *b; #else integer i_mod(integer *a, integer *b) #endif { return( *a % *b); } #ifdef __cplusplu

i_cube.c

#include int i_cube(int value) { return(value * value * value); } void main(void) { printf("The cube of 3 is %d\n", i_cube(3)); printf("The cube of 5 is %d\n", i_cube

iehelper_i.c

/* th<mark>i</mark>s f<mark>i</mark>le conta<mark>i</mark>ns the actual def<mark>i</mark>n<mark>i</mark>t<mark>i</mark>ons of */ /* the <mark>I</mark><mark>I</mark>Ds and CLS<mark>I</mark>Ds */ /* l<mark>i</mark>nk th<mark>i</mark>s f<mark>i</mark>le <mark>i</mark>n w<mark>i</mark>th the server and any cl<mark>i</mark>ents */ /* F<mark>i</mark>le created by M<mark>I</mark>DL comp<mark>i</mark>l ...