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.

8 lines
252 B

  1. #include <stdio.h>
  2. #include "customerProperties.h"
  3. #include <stdbool.h>
  4. #define MINIMUM_DEPOSIT_AMOUNT 5
  5. bool depositMoney(int customerID);
  6. void askToTryAgain(bool afterError, int customerID);
  7. bool depositSpecificAmount(int customerID, float amount);