add.c 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /* add.c: bcmath library file. */
  2. /*
  3. Copyright (C) 1991, 1992, 1993, 1994, 1997 Free Software Foundation, Inc.
  4. Copyright (C) 2000 Philip A. Nelson
  5. This library is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU Lesser General Public
  7. License as published by the Free Software Foundation; either
  8. version 2 of the License, or (at your option) any later version.
  9. This library is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. Lesser General Public License for more details. (LICENSE)
  13. You should have received a copy of the GNU Lesser General Public
  14. License along with this library; if not, write to:
  15. The Free Software Foundation, Inc.
  16. 59 Temple Place, Suite 330
  17. Boston, MA 02111-1307 USA.
  18. You may contact the author by:
  19. e-mail: philnelson@acm.org
  20. us-mail: Philip A. Nelson
  21. Computer Science Department, 9062
  22. Western Washington University
  23. Bellingham, WA 98226-9062
  24. *************************************************************************/
  25. #include <config.h>
  26. #include <stdio.h>
  27. #include <stdlib.h>
  28. #include <ctype.h>
  29. #include <stdarg.h>
  30. #include "bcmath.h"
  31. #include "private.h"
  32. /* Here is the full add routine that takes care of negative numbers.
  33. N1 is added to N2 and the result placed into RESULT. SCALE_MIN
  34. is the minimum scale for the result. */
  35. void
  36. bc_add (n1, n2, result, scale_min)
  37. bc_num n1, n2, *result;
  38. int scale_min;
  39. {
  40. bc_num sum = NULL;
  41. int cmp_res;
  42. int res_scale;
  43. if (n1->n_sign == n2->n_sign)
  44. {
  45. sum = _bc_do_add (n1, n2, scale_min);
  46. sum->n_sign = n1->n_sign;
  47. }
  48. else
  49. {
  50. /* subtraction must be done. */
  51. cmp_res = _bc_do_compare (n1, n2, FALSE, FALSE); /* Compare magnitudes. */
  52. switch (cmp_res)
  53. {
  54. case -1:
  55. /* n1 is less than n2, subtract n1 from n2. */
  56. sum = _bc_do_sub (n2, n1, scale_min);
  57. sum->n_sign = n2->n_sign;
  58. break;
  59. case 0:
  60. /* They are equal! return zero with the correct scale! */
  61. res_scale = MAX (scale_min, MAX(n1->n_scale, n2->n_scale));
  62. sum = bc_new_num (1, res_scale);
  63. memset (sum->n_value, 0, res_scale+1);
  64. break;
  65. case 1:
  66. /* n2 is less than n1, subtract n2 from n1. */
  67. sum = _bc_do_sub (n1, n2, scale_min);
  68. sum->n_sign = n1->n_sign;
  69. }
  70. }
  71. /* Clean up and return. */
  72. bc_free_num (result);
  73. *result = sum;
  74. }