You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
273 B

  1. #ifndef THEADMIRALS_ARITHMETICADDITION_H
  2. #define THEADMIRALS_ARITHMETICADDITION_H
  3. int* addition_integer(int, int);
  4. double* addition_double(double, double);
  5. float* addition_float(float, float);
  6. long* addition_long(long, long);
  7. #endif //THEADMIRALS_ARITHMETICADDITION_H