|
Arkanjo 0.1
A tool for find code duplicated functions in codebases
|
#include <stdio.h>
Include dependency graph for test_same_file_equal_functions.c: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_pair (int left, int right) |
| int | main (int argc, char *argv[]) |
| int main | ( | int | argc, |
| char * | argv[] ) |
Definition at line 16 of file test_same_file_equal_functions.c.
| int sum | ( | int | a, |
| int | b ) |
Definition at line 8 of file test_same_file_equal_functions.c.
| int sum_of_pair | ( | int | left, |
| int | right ) |
Definition at line 12 of file test_same_file_equal_functions.c.
| int sum_of_two_elements | ( | int | left_hand, |
| int | right_hand ) |
Definition at line 4 of file test_same_file_equal_functions.c.