1. fe8aa33 Update limits for passing tests by Gavin Howard · 7 years ago
  2. 53ed5bb Fix a few more bugs in printing by Gavin Howard · 7 years ago
  3. 1819ecc Fix printing by Gavin Howard · 7 years ago
  4. 8b25487 Handle zero special case in mod by Gavin Howard · 7 years ago
  5. faa8de0 Handle interactivity and errors properly by Gavin Howard · 7 years ago
  6. 5b24c3f Fix a bug in parsing different bases by Gavin Howard · 7 years ago
  7. a5dd287 Make sure to error on ibase/obase going over max by Gavin Howard · 7 years ago
  8. 415aff1 Make sure to error on invalid ibase/obase right away by Gavin Howard · 7 years ago
  9. 647612d Remove a line of debugging code by Gavin Howard · 7 years ago
  10. 389e69e Style fixes by Gavin Howard · 7 years ago
  11. 030fd97 Attempt to fix a bug in bc_program_index() by Gavin Howard · 7 years ago
  12. f1ab44f Style fixes to match up better with toybox by Gavin Howard · 7 years ago
  13. 9ae6a5d Change some function headers for toybox by Gavin Howard · 7 years ago
  14. 53043d6 Get rid of a useless cast by Gavin Howard · 7 years ago
  15. e785f71 Fix a bug from my function pointer change by Gavin Howard · 7 years ago
  16. a280bde Remove a useless function by Gavin Howard · 7 years ago
  17. 678c783 Remove casts in bc_main() by Gavin Howard · 7 years ago
  18. 1e70409 Remove the bc_code global by Gavin Howard · 7 years ago
  19. 0e6bc71 Remove a useless status by Gavin Howard · 7 years ago
  20. 07107d8 Remove a bit of redundant code by Gavin Howard · 7 years ago
  21. b5f1cb1 Fix two of the changes I made for landley by Gavin Howard · 7 years ago
  22. 293aec9 Shorten some error messages for landley by Gavin Howard · 7 years ago
  23. eb9a822 More style changes for landley by Gavin Howard · 7 years ago
  24. b5f9165 Fix problem with last commit by Gavin Howard · 7 years ago
  25. 496140a Another style fix for landley by Gavin Howard · 7 years ago
  26. bc72035 Fix more style concerns for landley by Gavin Howard · 7 years ago
  27. 66919c4 Update toybox style by Gavin Howard · 7 years ago
  28. c05f499 Add a line to report bugs (so landley does not have to handle them) by Gavin Howard · 7 years ago
  29. 4cf4992 Style fixes for toybox by Gavin Howard · 7 years ago
  30. 9d8285d Update the copyright string 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. 07add2e Revert "Remove all statics" by Gavin Howard · 7 years ago
  36. f2aa1e2 Remove all statics by Gavin Howard · 7 years ago
  37. 682366e Style fix by Gavin Howard · 7 years ago
  38. 021150b Fix the last divide error by Gavin Howard · 7 years ago
  39. 4e5ee2b Fix bugs found when testing in toybox by Gavin Howard · 7 years ago
  40. d9f5c8e Fix a few things in alg_s by Gavin Howard · 7 years ago
  41. 1a7e7ee Style fix for a name by Gavin Howard · 7 years ago
  42. 413c3a0 Fix the last of PR #1 by Gavin Howard · 7 years ago
  43. ceb0d6e Fix PR #1 for style by Gavin Howard · 7 years ago
  44. eb9070f lexer: optimize grouping of keyword properties by rofl0r · 7 years ago
  45. d9068fb Modify things to be better for toybox by Gavin Howard · 7 years ago
  46. 379be14 Fix a bug in generating print instructions by Gavin Howard · 7 years ago
  47. b386408 Use vec_push instead of vec_pushAt at one spot by Gavin Howard · 7 years ago
  48. 6846e70 Style fixes by Gavin Howard · 7 years ago
  49. 38a7855 Fix an out of memory error that actually didn't happen by Gavin Howard · 7 years ago
  50. ca3bc8e Fix a parse bug by Gavin Howard · 7 years ago
  51. 12ca470 Rename the global struct by Gavin Howard · 7 years ago
  52. 98afe9b Remove a compile warning by Gavin Howard · 7 years ago
  53. 32f2beb Reuse code for bc_num_printDecimal() by Gavin Howard · 7 years ago
  54. dff6d85 Fix an invalid param error by Gavin Howard · 7 years ago
  55. 00da6bd Fix bugs in long to num functions by Gavin Howard · 7 years ago
  56. fcb6ebb Fix bugs in parsing bases by Gavin Howard · 7 years ago
  57. 736cde0 Attempt to fix a parse error by Gavin Howard · 7 years ago
  58. b42810f Remove another memory leak by Gavin Howard · 7 years ago
  59. fd9b3ea Get rid of a memory leak on error by Gavin Howard · 7 years ago
  60. a234660 Get rid of a memory leak by Gavin Howard · 7 years ago
  61. d64cf8f Harden bc_constant_free() by Gavin Howard · 7 years ago
  62. 729f764 Attempt to fix toybox compile errors by Gavin Howard · 7 years ago
  63. cca8fee Fix another segfault by Gavin Howard · 7 years ago
  64. 3b54f7d Fix more possible instances of the segfault from earlier by Gavin Howard · 7 years ago
  65. 43ad54c Fix a parse bug on parsing builtins by Gavin Howard · 7 years ago
  66. a5594d1 Remove a parse bug when parsing just an increment by Gavin Howard · 7 years ago
  67. 192c64e Fix a parse bug where scale function was not parsed correctly by Gavin Howard · 7 years ago
  68. 467c836 Fix a segfault by Gavin Howard · 7 years ago
  69. 7edf829 Change gen to remove the header comment by Gavin Howard · 7 years ago
  70. 6d175b0 Shrink the size of lib.bc by Gavin Howard · 7 years ago
  71. 96780f3 Implement a(x) now that I understand it by Gavin Howard · 7 years ago
  72. db91939 Add j(n,x) after understanding the algorithm by Gavin Howard · 7 years ago
  73. 3908b97 Add s(x) after understanding the algorithm by Gavin Howard · 7 years ago
  74. 538f141 Add l(x) after going through the GNU bc version by Gavin Howard · 7 years ago
  75. 97d4512 Add e(x) to the math library by Gavin Howard · 7 years ago
  76. d6db8d7 Do not error when parsing an undefined function by Gavin Howard · 7 years ago
  77. 140a343 Remove all code (except cosine from the bc lib) by Gavin Howard · 7 years ago
  78. 675f70c Implement a rough mathlib by Gavin Howard · 7 years ago
  79. 519b15b Actually don't print an error on exit by Gavin Howard · 7 years ago
  80. 3cd3c6f Make sure to print the error on exit by Gavin Howard · 7 years ago
  81. d6bc00c Style fix for toybox by Gavin Howard · 7 years ago
  82. b43ca70 Fix a compile warning by Gavin Howard · 7 years ago
  83. 6431b91 Fix some things for toybox by Gavin Howard · 7 years ago
  84. d257683 Change a few things for toybox by Gavin Howard · 7 years ago
  85. 1ba6bee Modify gen to generate a full header by Gavin Howard · 7 years ago
  86. cc60b3d Get rid of a memory leak that was introduced by Gavin Howard · 7 years ago
  87. 4d06ceb Fix memory leaks when parsing function calls by Gavin Howard · 7 years ago
  88. 14e0564 Fix a bug I introduced in last commit by Gavin Howard · 7 years ago
  89. 9b787e9 Fix more bugs with parsing and codegen by Gavin Howard · 7 years ago
  90. 7f9d82a Attempt to fix code gen and parse errors on timeconst.bc by Gavin Howard · 7 years ago
  91. d4ac239 Attempt to fix code gen bugs in parse.c by Gavin Howard · 7 years ago
  92. ded20a2 Attempt to fix more bugs with function handling by Gavin Howard · 7 years ago
  93. c0d9f31 Fix bugs when printing programs by Gavin Howard · 7 years ago
  94. ae36d76 Fix bugs in bc_parse_pushIndex() by Gavin Howard · 7 years ago
  95. 39e0212 Fix more bugs found in testing timeconst.bc by Gavin Howard · 7 years ago
  96. 152f3e8 Make sure to not print newlines when in a print statement by Gavin Howard · 7 years ago
  97. a1ff02f Fix various bugs found when testing timeconst.bc by Gavin Howard · 7 years ago
  98. f83dd61 Style fix by Gavin Howard · 7 years ago
  99. c295369 Fix various bugs found when testing timeconst.bc by Gavin Howard · 7 years ago
  100. 33642b0 Make sure to check the number of braces by Gavin Howard · 7 years ago