Arkanjo 0.1
A tool for find code duplicated functions in codebases
|
#include <stdio.h>
Go to the source code of this file.
Functions | |
int | sum_of_two_elements (int left_hand, int right_hand) |
int | sum (int a, int b) |
int | sum_of_array (int array[], int n) |
int | sum_of_array2 (int n, int array[]) |
int | sum_of_vector (int vector[], int size_of_vector) |
int | main (int argc, char *argv[]) |
int main | ( | int | argc, |
char * | argv[] ) |
Definition at line 39 of file test_same_file_different_functions_same_logic.c.
int sum | ( | int | a, |
int | b ) |
Definition at line 8 of file test_same_file_different_functions_same_logic.c.
int sum_of_array | ( | int | array[], |
int | n ) |
Definition at line 14 of file test_same_file_different_functions_same_logic.c.
int sum_of_array2 | ( | int | n, |
int | array[] ) |
Definition at line 22 of file test_same_file_different_functions_same_logic.c.
int sum_of_two_elements | ( | int | left_hand, |
int | right_hand ) |
Definition at line 4 of file test_same_file_different_functions_same_logic.c.
int sum_of_vector | ( | int | vector[], |
int | size_of_vector ) |
Definition at line 30 of file test_same_file_different_functions_same_logic.c.