freebsd-dev/contrib/libf2c/libF77/h_indx.c

24 lines
332 B
C
Raw Normal View History

1999-09-18 10:51:31 +00:00
#include "f2c.h"
2003-07-11 03:42:19 +00:00
shortint
h_indx (char *a, char *b, ftnlen la, ftnlen lb)
1999-09-18 10:51:31 +00:00
{
2003-07-11 03:42:19 +00:00
ftnlen i, n;
char *s, *t, *bend;
1999-09-18 10:51:31 +00:00
2003-07-11 03:42:19 +00:00
n = la - lb + 1;
bend = b + lb;
1999-09-18 10:51:31 +00:00
2003-07-11 03:42:19 +00:00
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);
1999-09-18 10:51:31 +00:00
}