tdd-in-c/src/my_fancy_calculator.c

5 lines
77 B
C

#include "my_fancy_calculator.h"
int add(int a, int b) {
return a - b;
}