Arkanjo 0.1
A tool for find code duplicated functions in codebases
Loading...
Searching...
No Matches
test_same_file_equal_functions.c File Reference
#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[])
 

Function Documentation

◆ main()

int main ( int argc,
char * argv[] )

Definition at line 16 of file test_same_file_equal_functions.c.

◆ sum()

int sum ( int a,
int b )

Definition at line 8 of file test_same_file_equal_functions.c.

◆ sum_of_pair()

int sum_of_pair ( int left,
int right )

Definition at line 12 of file test_same_file_equal_functions.c.

◆ sum_of_two_elements()

int sum_of_two_elements ( int left_hand,
int right_hand )

Definition at line 4 of file test_same_file_equal_functions.c.