divmod.c 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /* divmod.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. /* Division *and* modulo for numbers. This computes both NUM1 / NUM2 and
  33. NUM1 % NUM2 and puts the results in QUOT and REM, except that if QUOT
  34. is NULL then that store will be omitted.
  35. */
  36. int
  37. bc_divmod (bc_num num1, bc_num num2, bc_num *quot, bc_num *rem, int scale)
  38. {
  39. bc_num quotient = NULL;
  40. bc_num temp;
  41. int rscale;
  42. /* Check for correct numbers. */
  43. if (bc_is_zero (num2)) return -1;
  44. /* Calculate final scale. */
  45. rscale = MAX (num1->n_scale, num2->n_scale+scale);
  46. bc_init_num(&temp);
  47. /* Calculate it. */
  48. bc_divide (num1, num2, &temp, 0);
  49. if (quot)
  50. quotient = bc_copy_num (temp);
  51. bc_multiply (temp, num2, &temp, rscale);
  52. bc_sub (num1, temp, rem, rscale);
  53. bc_free_num (&temp);
  54. if (quot)
  55. {
  56. bc_free_num (quot);
  57. *quot = quotient;
  58. }
  59. return 0; /* Everything is OK. */
  60. }
  61. /* Modulo for numbers. This computes NUM1 % NUM2 and puts the
  62. result in RESULT. */
  63. int
  64. bc_modulo (bc_num num1, bc_num num2, bc_num *result, int scale)
  65. {
  66. return bc_divmod (num1, num2, NULL, result, scale);
  67. }