Arkanjo
0.1
A tool for find code duplicated functions in codebases
Loading...
Searching...
No Matches
find_min.c
Go to the documentation of this file.
1
{
2
int
mn
=
v
[0];
3
for
(
int
i = 1; i <
n
; i++){
4
if
(
mn
>
v
[i]){
5
mn
= i;
6
}
7
}
8
return
mn
;
9
}
n
int n
Definition
main.c:10
v
v[0]
Definition
main.c:4
mn
return mn
Definition
find_min.c:8
tests
e2e
current
tmp
source
test_multiple_file_shuffled_functions
source.c
find_min.c
Generated by
1.12.0