1. 4cf4992 Style fixes for toybox by Gavin Howard · 6 years ago
  2. cc4d770 Start using the basic test by Gavin Howard · 6 years ago
  3. 23d93bc Add a script from rofl0r (sabotage linux) by Gavin Howard · 6 years ago
  4. 5f3edec Add generated parse and print tests by Gavin Howard · 6 years ago
  5. fd446ab Remove the sqrt test that the GNU bc gets wrong by Gavin Howard · 6 years ago
  6. 5f7bcce Add a missing divide test by Gavin Howard · 6 years ago
  7. 4c0dc40 Add a license header and warning to toybox/release.py by Gavin Howard · 6 years ago
  8. fdb26f3 Update the NOTICE.md file by Gavin Howard · 6 years ago
  9. 9d8285d Update the copyright string by Gavin Howard · 6 years ago
  10. 0573304 Add a workaround for running bc as toybox under timeconst.sh by Gavin Howard · 6 years ago
  11. 0c7de85 Style fix to timeconst.sh by Gavin Howard · 6 years ago
  12. fa01a3a Don't remove the files in timeconst.sh by Gavin Howard · 6 years ago
  13. 79007cf Exclude veco functions by Gavin Howard · 6 years ago
  14. d75aaec Exclude as many function declarations as possible by Gavin Howard · 6 years ago
  15. f456d37 Make sure data is put before code in toybox by Gavin Howard · 6 years ago
  16. d79b7a1 Fix a compile error from last commit by Gavin Howard · 6 years ago
  17. 3e13bbe Move the data.c and data.h files to lang.c and lang.h by Gavin Howard · 6 years ago
  18. d2b1797 Remove statics from toybox by Gavin Howard · 6 years ago
  19. 07add2e Revert "Remove all statics" by Gavin Howard · 6 years ago
  20. f2aa1e2 Remove all statics by Gavin Howard · 6 years ago
  21. 682366e Style fix by Gavin Howard · 6 years ago
  22. 021150b Fix the last divide error by Gavin Howard · 6 years ago
  23. 4e5ee2b Fix bugs found when testing in toybox by Gavin Howard · 6 years ago
  24. d9f5c8e Fix a few things in alg_s by Gavin Howard · 6 years ago
  25. 1a7e7ee Style fix for a name by Gavin Howard · 6 years ago
  26. 413c3a0 Fix the last of PR #1 by Gavin Howard · 6 years ago
  27. ceb0d6e Fix PR #1 for style by Gavin Howard · 6 years ago
  28. eb9070f lexer: optimize grouping of keyword properties by rofl0r · 6 years ago
  29. d9068fb Modify things to be better for toybox by Gavin Howard · 6 years ago
  30. 379be14 Fix a bug in generating print instructions by Gavin Howard · 6 years ago
  31. b386408 Use vec_push instead of vec_pushAt at one spot by Gavin Howard · 6 years ago
  32. 6846e70 Style fixes by Gavin Howard · 6 years ago
  33. 38a7855 Fix an out of memory error that actually didn't happen by Gavin Howard · 6 years ago
  34. ca3bc8e Fix a parse bug by Gavin Howard · 6 years ago
  35. 0c59f6b Fix problems in the toybox header by Gavin Howard · 6 years ago
  36. 12ca470 Rename the global struct by Gavin Howard · 6 years ago
  37. 98afe9b Remove a compile warning by Gavin Howard · 6 years ago
  38. 32f2beb Reuse code for bc_num_printDecimal() by Gavin Howard · 6 years ago
  39. 3852699 Add the lex source to toybox release by Gavin Howard · 6 years ago
  40. dff6d85 Fix an invalid param error by Gavin Howard · 6 years ago
  41. 62fff61 Print out the test name in all by Gavin Howard · 6 years ago
  42. 00da6bd Fix bugs in long to num functions by Gavin Howard · 6 years ago
  43. fcb6ebb Fix bugs in parsing bases by Gavin Howard · 6 years ago
  44. 736cde0 Attempt to fix a parse error by Gavin Howard · 6 years ago
  45. b42810f Remove another memory leak by Gavin Howard · 6 years ago
  46. fd9b3ea Get rid of a memory leak on error by Gavin Howard · 6 years ago
  47. a234660 Get rid of a memory leak by Gavin Howard · 6 years ago
  48. d64cf8f Harden bc_constant_free() by Gavin Howard · 6 years ago
  49. 04e538c Make sure to remove the BcGlobals struct definition by Gavin Howard · 6 years ago
  50. 729f764 Attempt to fix toybox compile errors by Gavin Howard · 6 years ago
  51. cca8fee Fix another segfault by Gavin Howard · 6 years ago
  52. 3b54f7d Fix more possible instances of the segfault from earlier by Gavin Howard · 6 years ago
  53. 43ad54c Fix a parse bug on parsing builtins by Gavin Howard · 6 years ago
  54. a5594d1 Remove a parse bug when parsing just an increment by Gavin Howard · 6 years ago
  55. 192c64e Fix a parse bug where scale function was not parsed correctly by Gavin Howard · 6 years ago
  56. 467c836 Fix a segfault by Gavin Howard · 6 years ago
  57. 7edf829 Change gen to remove the header comment by Gavin Howard · 6 years ago
  58. 6d175b0 Shrink the size of lib.bc by Gavin Howard · 6 years ago
  59. 96780f3 Implement a(x) now that I understand it by Gavin Howard · 6 years ago
  60. db91939 Add j(n,x) after understanding the algorithm by Gavin Howard · 6 years ago
  61. 3908b97 Add s(x) after understanding the algorithm by Gavin Howard · 6 years ago
  62. 538f141 Add l(x) after going through the GNU bc version by Gavin Howard · 6 years ago
  63. 97d4512 Add e(x) to the math library by Gavin Howard · 6 years ago
  64. d6db8d7 Do not error when parsing an undefined function by Gavin Howard · 6 years ago
  65. 140a343 Remove all code (except cosine from the bc lib) by Gavin Howard · 6 years ago
  66. 675f70c Implement a rough mathlib by Gavin Howard · 6 years ago
  67. 519b15b Actually don't print an error on exit by Gavin Howard · 6 years ago
  68. 3cd3c6f Make sure to print the error on exit by Gavin Howard · 6 years ago
  69. d6bc00c Style fix for toybox by Gavin Howard · 6 years ago
  70. 5907df2 Fix a parse error with assignment and negate by Gavin Howard · 6 years ago
  71. b43ca70 Fix a compile warning by Gavin Howard · 6 years ago
  72. 6431b91 Fix some things for toybox by Gavin Howard · 6 years ago
  73. 7f6911c Add files to cut releases for toybox by Gavin Howard · 6 years ago
  74. d257683 Change a few things for toybox by Gavin Howard · 6 years ago
  75. 1ba6bee Modify gen to generate a full header by Gavin Howard · 6 years ago
  76. cc60b3d Get rid of a memory leak that was introduced by Gavin Howard · 6 years ago
  77. 4d06ceb Fix memory leaks when parsing function calls by Gavin Howard · 6 years ago
  78. 3e75dfd Make sure we test 0 hz on timeconst.sh by Gavin Howard · 6 years ago
  79. 14e0564 Fix a bug I introduced in last commit by Gavin Howard · 6 years ago
  80. 9b787e9 Fix more bugs with parsing and codegen by Gavin Howard · 6 years ago
  81. 7f9d82a Attempt to fix code gen and parse errors on timeconst.bc by Gavin Howard · 6 years ago
  82. d4ac239 Attempt to fix code gen bugs in parse.c by Gavin Howard · 6 years ago
  83. ded20a2 Attempt to fix more bugs with function handling by Gavin Howard · 6 years ago
  84. c0d9f31 Fix bugs when printing programs by Gavin Howard · 6 years ago
  85. ae36d76 Fix bugs in bc_parse_pushIndex() by Gavin Howard · 6 years ago
  86. 39e0212 Fix more bugs found in testing timeconst.bc by Gavin Howard · 6 years ago
  87. 152f3e8 Make sure to not print newlines when in a print statement by Gavin Howard · 6 years ago
  88. a1ff02f Fix various bugs found when testing timeconst.bc by Gavin Howard · 6 years ago
  89. f83dd61 Style fix by Gavin Howard · 6 years ago
  90. c295369 Fix various bugs found when testing timeconst.bc by Gavin Howard · 6 years ago
  91. 33642b0 Make sure to check the number of braces by Gavin Howard · 6 years ago
  92. fe1a9e1 Remove debugging code by Gavin Howard · 6 years ago
  93. 0f85d02 Fix another bug in function handling by Gavin Howard · 6 years ago
  94. 5294d17 Fix a lot of bugs relating to function handling by Gavin Howard · 6 years ago
  95. 071a6a6 Style fixes by Gavin Howard · 6 years ago
  96. 442a6fd Try to harden memory management in the parser by Gavin Howard · 6 years ago
  97. d97aca5 Style fixes by Gavin Howard · 6 years ago
  98. 1e6793b Start fixing the parse bug by Gavin Howard · 6 years ago
  99. 0377d25 Add a new parse flag by Gavin Howard · 6 years ago
  100. ba2c746 Clean up more parse code by Gavin Howard · 6 years ago