Source of functions.h


  1: //functions.h

  2: 
  3: void GetTwoValuesFromUser
  4: (
  5: int& i, //out

  6: int& j  //out

  7: );
  8: 
  9: void DisplayValues
 10: (
 11: int i, //in

 12: int j  //in

 13: );