mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-19 17:59:47 +08:00
4d85a6fea6
* libF77/*: Delete KR_headers cruft. * libI77/*: Likewise. * libU77/*: Likewise. From-SVN: r54132
23 lines
275 B
C
23 lines
275 B
C
#include "f2c.h"
|
|
|
|
integer i_indx(char *a, char *b, ftnlen la, ftnlen lb)
|
|
{
|
|
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(i+1);
|
|
no: ;
|
|
}
|
|
return(0);
|
|
}
|