1. 2adc195 Remove unused code by Gavin Howard · 7 years ago
  2. 90f13ad Pass func args on the expr_stack by Gavin Howard · 7 years ago
  3. 4d498ce Get my params and args straight in status name and message by Gavin Howard · 7 years ago
  4. 431435b Get rid of a compiler warning by Gavin Howard · 7 years ago
  5. 9a65a4e Reduce the read-only data by Gavin Howard · 7 years ago
  6. 16bba75 Remove a redundant status by Gavin Howard · 7 years ago
  7. bdb2f92 Change error messages and such for landley by Gavin Howard · 7 years ago
  8. 6e48710 More style fixes (from rofl0r) by Gavin Howard · 7 years ago
  9. 3898d19 Remove separation between params and autos by Gavin Howard · 7 years ago
  10. 5732343 Make recursion work by Gavin Howard · 7 years ago
  11. 7a2e8c9 Code cleanup for landley by Gavin Howard · 7 years ago
  12. abcc5e0 Revert "Start fixing the recursion bug" by Gavin Howard · 7 years ago
  13. 89677d1 Start fixing the recursion bug by Gavin Howard · 7 years ago
  14. bc7cae8 Take strings into account when printing widths by Gavin Howard · 7 years ago
  15. 747aa5b Fix bug where obase was triggering wrongly by Gavin Howard · 7 years ago
  16. fe8aa33 Update limits for passing tests by Gavin Howard · 7 years ago
  17. 1819ecc Fix printing by Gavin Howard · 7 years ago
  18. 9ae6a5d Change some function headers for toybox by Gavin Howard · 7 years ago
  19. 53043d6 Get rid of a useless cast by Gavin Howard · 7 years ago
  20. a280bde Remove a useless function by Gavin Howard · 7 years ago
  21. 678c783 Remove casts in bc_main() by Gavin Howard · 7 years ago
  22. 1e70409 Remove the bc_code global by Gavin Howard · 7 years ago
  23. 0e6bc71 Remove a useless status by Gavin Howard · 7 years ago
  24. 4fa50d7 Style fix by Gavin Howard · 7 years ago
  25. 07107d8 Remove a bit of redundant code by Gavin Howard · 7 years ago
  26. eb9a822 More style changes for landley by Gavin Howard · 7 years ago
  27. bc72035 Fix more style concerns for landley by Gavin Howard · 7 years ago
  28. 66919c4 Update toybox style by Gavin Howard · 7 years ago
  29. 4cf4992 Style fixes for toybox by Gavin Howard · 7 years ago
  30. 79007cf Exclude veco functions by Gavin Howard · 7 years ago
  31. d75aaec Exclude as many function declarations as possible by Gavin Howard · 7 years ago
  32. f456d37 Make sure data is put before code in toybox by Gavin Howard · 7 years ago
  33. d79b7a1 Fix a compile error from last commit by Gavin Howard · 7 years ago
  34. 3e13bbe Move the data.c and data.h files to lang.c and lang.h by Gavin Howard · 7 years ago
  35. 021150b Fix the last divide error by Gavin Howard · 7 years ago
  36. 4e5ee2b Fix bugs found when testing in toybox by Gavin Howard · 7 years ago
  37. ceb0d6e Fix PR #1 for style by Gavin Howard · 7 years ago
  38. 12ca470 Rename the global struct by Gavin Howard · 7 years ago
  39. 32f2beb Reuse code for bc_num_printDecimal() by Gavin Howard · 7 years ago
  40. 729f764 Attempt to fix toybox compile errors by Gavin Howard · 7 years ago
  41. 5907df2 Fix a parse error with assignment and negate by Gavin Howard · 7 years ago
  42. b43ca70 Fix a compile warning by Gavin Howard · 7 years ago
  43. 6431b91 Fix some things for toybox by Gavin Howard · 7 years ago
  44. d257683 Change a few things for toybox by Gavin Howard · 7 years ago
  45. 152f3e8 Make sure to not print newlines when in a print statement by Gavin Howard · 7 years ago
  46. 1e6793b Start fixing the parse bug by Gavin Howard · 7 years ago
  47. 0377d25 Add a new parse flag by Gavin Howard · 7 years ago
  48. 2a6e3a6 Add the capability to use '.' as a shortcut for last by Gavin Howard · 7 years ago
  49. 6fb635f Attempt to fix bugs with bc_num_alg_p() by Gavin Howard · 7 years ago
  50. 2682a1f Add a rough implementation of non-decimal printing by Gavin Howard · 7 years ago
  51. 82435af Style fix for toybox by Gavin Howard · 7 years ago
  52. 5cea43b Change conversion functions to accept BcNum bases by Gavin Howard · 7 years ago
  53. b11bc8a Deduplicate some code by Gavin Howard · 7 years ago
  54. 0561f91 Make sure there can't be two autos/params of same name by Gavin Howard · 7 years ago
  55. e50f712 Make sure recursive read() calls cannot happen by Gavin Howard · 7 years ago
  56. b4d6049 Improve the parser by using flags by Gavin Howard · 7 years ago
  57. 5c222e3 Make sure to pop a result if it's not printed by Gavin Howard · 7 years ago
  58. aaa9140 Improve the search functions by Gavin Howard · 7 years ago
  59. f23448c Start implementing work to search for function args by Gavin Howard · 7 years ago
  60. 4da34bd Add an init func type by Gavin Howard · 7 years ago
  61. d6fa9f0 Remove a useless status by Gavin Howard · 7 years ago
  62. 63e843d Add some consts by Gavin Howard · 7 years ago
  63. bbd368c Add an invalid stack status by Gavin Howard · 7 years ago
  64. 9bb13e2 Various style fixes by Gavin Howard · 7 years ago
  65. df64dc9 Add an invalid type status (for later) by Gavin Howard · 7 years ago
  66. 843fa79 Handle boolean and logical operators by Gavin Howard · 7 years ago
  67. 67c3852 Rename a function by Gavin Howard · 7 years ago
  68. e723a15 Add a rough implementation for inc/dec by Gavin Howard · 7 years ago
  69. a80ad15 Add an invalid label status by Gavin Howard · 7 years ago
  70. 17452fb Remove last references (maybe) to locals and temps by Gavin Howard · 7 years ago
  71. ed392aa Redo the bc_program_read() function by Gavin Howard · 7 years ago
  72. e351e9d Handle printing correctly by Gavin Howard · 7 years ago
  73. bde073f Fix a problem with last commit by Gavin Howard · 7 years ago
  74. 1cab010 Fix a problem with last commit by Gavin Howard · 7 years ago
  75. 88e39e6 Stop Qt Creator from labeling a comment as "TODO" by Gavin Howard · 7 years ago
  76. 195706a Fill out more instructions, at least somewhat by Gavin Howard · 7 years ago
  77. e093617 Fix post inc and dec by Gavin Howard · 7 years ago
  78. d88d9e0 Add an invalid return status by Gavin Howard · 7 years ago
  79. e66ce6a Remove scale requirement from parsing by Gavin Howard · 7 years ago
  80. 5d74e96 Make ibase and obase BcNum's and handle conversion by Gavin Howard · 7 years ago
  81. 43a027f Create zero and one constants more efficiently by Gavin Howard · 7 years ago
  82. 6d89b5d Add an initial rough implementation of assignments by Gavin Howard · 7 years ago
  83. 8d1f1db Update pointer style for toybox by Gavin Howard · 7 years ago
  84. a883ad9 Start checking stack sizes by Gavin Howard · 7 years ago
  85. e9a135e Use a function pointer trick to deduplicate code by Gavin Howard · 7 years ago
  86. 5d43619 Fix a possible out of bounds bug in vectors by Gavin Howard · 7 years ago
  87. e9d0e5a Remove some useless functions by Gavin Howard · 7 years ago
  88. 7168cad Add pedantic and comply with C99 by Gavin Howard · 7 years ago
  89. 7c8dc77 Fix scan-build warnings by Gavin Howard · 7 years ago
  90. 4596409 Update bc_result_free() by Gavin Howard · 7 years ago
  91. 9ea1506 Add a function to get the nth item from the end of vectors by Gavin Howard · 7 years ago
  92. db48850 Fix a compile error by Gavin Howard · 7 years ago
  93. 025d04d Start turning BcNum arrays into least significant first by Gavin Howard · 7 years ago
  94. c52c479 Fix bugs with io routines by Gavin Howard · 7 years ago
  95. c5e491b Reform the start code to be better compatible with toybox by Gavin Howard · 7 years ago
  96. b5904bf Change the license by Gavin Howard · 7 years ago
  97. a83e3dc Fix a few bugs and compile errors by Gavin Howard · 7 years ago
  98. 8389bb2 Rename a few things by Gavin Howard · 7 years ago
  99. 8e2cc69 Add functions to convert longs to BcNum's by Gavin Howard · 7 years ago
  100. 6f6dc94 Replace unused with cap in BcNum's by Gavin Howard · 7 years ago