repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* builtins.def: Break out _Complex math functions into their
[official-gcc.git]
/
libf2c
/
libF77
/
h_indx.c
blob
2353b2b143aba5f1991d565e9b781a4c00c2d79c
1
#include
"f2c.h"
2
3
shortint
4
h_indx
(
char
*
a
,
char
*
b
,
ftnlen la
,
ftnlen lb
)
5
{
6
ftnlen i
,
n
;
7
char
*
s
, *
t
, *
bend
;
8
9
n
=
la
-
lb
+
1
;
10
bend
=
b
+
lb
;
11
12
for
(
i
=
0
;
i
<
n
; ++
i
)
13
{
14
s
=
a
+
i
;
15
t
=
b
;
16
while
(
t
<
bend
)
17
if
(*
s
++ != *
t
++)
18
goto
no
;
19
return
((
shortint
)
i
+
1
);
20
no
:;
21
}
22
return
(
0
);
23
}