81fea2b1d1
"libf2c" directory. From-SVN: r17568
27 lines
375 B
C
27 lines
375 B
C
#include "f2c.h"
|
|
|
|
#ifdef KR_headers
|
|
shortint h_indx(a, b, la, lb) char *a, *b; ftnlen la, lb;
|
|
#else
|
|
shortint h_indx(char *a, char *b, ftnlen la, ftnlen lb)
|
|
#endif
|
|
{
|
|
ftnlen i, n;
|
|
char *s, *t, *bend;
|
|
|
|
n = la - lb + 1;
|
|
bend = b + lb;
|
|
|
|
for(i = 0 ; i < n ; ++i)
|
|
{
|
|
s = a + i;
|
|
t = b;
|
|
while(t < bend)
|
|
if(*s++ != *t++)
|
|
goto no;
|
|
return((shortint)i+1);
|
|
no: ;
|
|
}
|
|
return(0);
|
|
}
|