1. dbbada8 Rename a couple procedures by Gavin Howard · 6 years ago
  2. 5eba0e8 Fix a coverity error by Gavin Howard · 6 years ago
  3. 6734e1a Reduce code size even more by Gavin Howard · 6 years ago
  4. d2cf06a Fix a test failure by Gavin Howard · 6 years ago
  5. 56ebcf7 Reduce code size even more by Gavin Howard · 6 years ago
  6. 9d91b2c Reduce code some more by Gavin Howard · 6 years ago
  7. a83a5e5 Reduce code size some more by Gavin Howard · 6 years ago
  8. 7b7d2f3 Reduce code size a lot by making BC_NUM_INT a function by Gavin Howard · 6 years ago
  9. 798508b Add functions to check alloc size overflow by Gavin Howard · 6 years ago
  10. 1973d61 Reduce code size by Gavin Howard · 6 years ago
  11. 5edf849 Fix a crash that I found while playing around by Gavin Howard · 6 years ago
  12. d88164d Fix a Coverity Scan error by Gavin Howard · 6 years ago
  13. 1769abc Reduce code when signals are not enabled by Gavin Howard · 6 years ago
  14. 7ad5a66 Implement scientific and engineering notations by Gavin Howard · 6 years ago
  15. 07fbf01 Remove a memory leak on error by Gavin Howard · 6 years ago
  16. fb4f2b8 Redo error handling to return specific error statuses by Gavin Howard · 6 years ago
  17. 1bbcec0 Fix some more Coverity Scan bugs by Gavin Howard · 6 years ago
  18. fa4983a Fix even more problems by Gavin Howard · 6 years ago
  19. 176cfe6 Fix more problems by Gavin Howard · 6 years ago
  20. 9b80163 Fix some problems by Gavin Howard · 6 years ago
  21. dc0ee9e Undo a lot of changes by Gavin Howard · 6 years ago
  22. ee9d01e Remove responsibility to return signals from some math functions by Gavin Howard · 6 years ago
  23. e11f10a Remove a useless return value by Gavin Howard · 6 years ago
  24. d8b004b Remove useless return values by Gavin Howard · 6 years ago
  25. 3fb24fa Remove the need to return a status from bc_num_print() by Gavin Howard · 6 years ago
  26. d141768 Remove need to check for errors from bc_num_parse() by Gavin Howard · 6 years ago
  27. a9b2ead Take out responsibility for signal handling from binary funcs by Gavin Howard · 6 years ago
  28. 06b6e86 Handle overflow correctly by Gavin Howard · 6 years ago
  29. 283c4eb Style fix by Gavin Howard · 6 years ago
  30. 26d078f Style fixes to decrease the executable size by Gavin Howard · 6 years ago
  31. 626e905 Fix the build by Gavin Howard · 6 years ago
  32. baa4f58 Shrink the executable size by Gavin Howard · 6 years ago
  33. 620a8af Remove some redundant code by Gavin Howard · 6 years ago
  34. d18fa6d Make bc_program_* functions be able to set allocation sizes for BcNums by Gavin Howard · 6 years ago
  35. 201cb6f Reduce code by Gavin Howard · 6 years ago
  36. dd7a0fd Style fix by Gavin Howard · 6 years ago
  37. cafcd3e Factor out some common code in num.c by Gavin Howard · 6 years ago
  38. 6d38ef4 Reduce executable size by Gavin Howard · 6 years ago
  39. 1fde339 Remove compiler warnings by Gavin Howard · 6 years ago
  40. f2ef2f3 Remove an assert that is not needed and wrong by Gavin Howard · 6 years ago
  41. 2a36692 Fix another crash by Gavin Howard · 6 years ago
  42. c3cea53 Fix a crash with the places operator by Gavin Howard · 6 years ago
  43. 1cbfe24 Turn on -Weverything and eliminate all warnings by Gavin Howard · 6 years ago
  44. c4bf4c4 Fix another crash and add asserts to catch it faster by Gavin Howard · 6 years ago
  45. dcff3c9 Fix another crash by Gavin Howard · 6 years ago
  46. 8dd307e Fix handling of numbers to eat whitespace after \ newline by Gavin Howard · 6 years ago
  47. 83c850d Add some const qualifiers by Gavin Howard · 6 years ago
  48. 231e66c Add some debugging aids to num.c by Gavin Howard · 6 years ago
  49. fdf64bc Silence some compiler warnings by Gavin Howard · 6 years ago
  50. 4d5daba Remove some extra code by Gavin Howard · 6 years ago
  51. 510859c Fix some (wrongly given, sigh) gcc warnings by Gavin Howard · 6 years ago
  52. 5dbb48b Handle sigterm and sigquit too by Gavin Howard · 6 years ago
  53. 6193aaf Remove compiler warnings from gcc by Gavin Howard · 6 years ago
  54. 50c8002 Remove some useless calls to bc_num_zero() by Gavin Howard · 6 years ago
  55. ddce6d4 Add #defines for testing for zero and non-zero BcNum's by Gavin Howard · 6 years ago
  56. 7344ba7 Style fix by Gavin Howard · 6 years ago
  57. be4e822 Another style fix by Gavin Howard · 6 years ago
  58. 5a0616e Style fix by Gavin Howard · 6 years ago
  59. 1ab22d2 Change style for toybox by Gavin Howard · 6 years ago
  60. 9203735 Guard bc-only parse errors and change a few errors to proper categories by Gavin Howard · 6 years ago
  61. 99ca499 Fix a possible bug by Gavin Howard · 6 years ago
  62. 8a2dedf Fix an interrupt that wasn't returning by Gavin Howard · 6 years ago
  63. ab5e963 Make nchars be in BcVm by Gavin Howard · 6 years ago
  64. c90ed90 Make bc_num_strValid() just an assert by Gavin Howard · 6 years ago
  65. 6dcd15c Fix a couple of possible bugs in num.c by Gavin Howard · 6 years ago
  66. bf28259 Inline a function by Gavin Howard · 6 years ago
  67. a65efa3 Remove a branch by Gavin Howard · 6 years ago
  68. 8807e8c Fix mistake in last commit by Gavin Howard · 6 years ago
  69. 6f8e520 Remove BcProgram zero field and replace with a function by Gavin Howard · 6 years ago
  70. 431987e Fix a bug in print by Gavin Howard · 6 years ago
  71. ecc7fc2 Improve error reporting across the board by Gavin Howard · 6 years ago
  72. 223fa6d Remove superfluous assignment by Gavin Howard · 6 years ago
  73. 96edeb3 Allow ibase up to 36 when not in standard or warn modes by Gavin Howard · 6 years ago
  74. 7fdc30a Style fix by Gavin Howard · 6 years ago
  75. 18f4020 Remove an extra allocation by Gavin Howard · 6 years ago
  76. d746e80 Handle the single-letter parsing better by Gavin Howard · 6 years ago
  77. 228ce9e Fix a problem with letters by Gavin Howard · 6 years ago
  78. c7d655b Add the capital letters feature of the GNU bc by Gavin Howard · 6 years ago
  79. 3c02ed3 Optimizations and various style fixes by Gavin Howard · 6 years ago
  80. 7bda478 Remove code from a non-extra build that doesn't need to be there by Gavin Howard · 6 years ago
  81. ac4d912 Add code to handle the new binary operators by Gavin Howard · 6 years ago
  82. 26fb4d0 Merge branch 'master' into math by Gavin Howard · 6 years ago
  83. 4185296 Style fix by Gavin Howard · 6 years ago
  84. 7d8f038 Add the vast majority of the infrastructure needed for extra math by Gavin Howard · 6 years ago
  85. d392983 Style and efficiency fixes for num.c by Gavin Howard · 6 years ago
  86. fb14efc Handle numbers that are integers with decimal places in power by Gavin Howard · 6 years ago
  87. 43df94a More style fixes by Gavin Howard · 6 years ago
  88. 7a3e7a7 Fix a bug by Gavin Howard · 6 years ago
  89. b8a1292 Use statically-allocated BcNum's where I can by Gavin Howard · 6 years ago
  90. ed38e94 Remove some scan-build warnings by Gavin Howard · 6 years ago
  91. 7b557da Style fixes to num.c by Gavin Howard · 6 years ago
  92. 954f9b6 Change some chars to unsigned chars by Gavin Howard · 6 years ago
  93. 2aef61b Use more unsigned ints in num.c by Gavin Howard · 6 years ago
  94. 7536dcf Change all of bc to output error messages at point of error by Gavin Howard · 6 years ago
  95. 38ddfc2 Remove useless calls to bc_num_zero by Gavin Howard · 6 years ago
  96. d3a1c39 Optimize bc_num_ulong() by Gavin Howard · 6 years ago
  97. 70e3d60 Make all of the VM global by Gavin Howard · 6 years ago
  98. 34c4ba0 Improve speed of brute force addition by Gavin Howard · 6 years ago
  99. 112304b Simplify signal handling by Gavin Howard · 6 years ago
  100. a84ad99 Make more changes to be closer to what busybox wants by Gavin Howard · 6 years ago