aboutsummaryrefslogtreecommitdiff
path: root/src/library.js
AgeCommit message (Collapse)Author
2011-06-28Added proper argument size support to _formatString/printf.max99x
2011-06-28Proper handling of unknown specifiers in _formatString/printf; minor refactor.max99x
2011-06-28Properly padding infinity/NaN in _formatString/printf.max99x
2011-06-28Added support for %n in _formatString/printf.max99x
2011-06-28Replaced brainded float formatting with a much cleaner (and more precise) ↵max99x
version.
2011-06-27Fixed some strict mode problems; added test for -Infinity.max99x
2011-06-27Fixed unsigned number printing; updated Lua test with correct format (same ↵max99x
as GCC produces).
2011-06-27Minor printf() bugfix.max99x
2011-06-27Fixed a few boneheaded mistakes; added test for strtod().max99x
2011-06-27Implemented a GCC-alike printf/_formatString.max99x
2011-06-27Added exponent handling to strtod().max99x
2011-06-26Merge remote-tracking branch 'upstream/master'max99x
2011-06-26Fixed function indexing issues between parent and child;max99x
Child no longer includes library, using the parent's instead.
2011-06-25remove second unneeded unlink in libraryAlon Zakai
2011-06-25Style cleanup for the previous commit.max99x
2011-06-25indexize Math.* properly. fixes issue 29Alon Zakai
2011-06-25Fixed stdin() returning undefined in browser cotext if the usermax99x
clicks "Cancel" in the prompt dialog.
2011-06-25Added basic support for dynamic module loading.max99x
2011-06-24Additional IO functions support (pull 31)tim.dawborn
2011-06-24fix and optimize library aliases by making them refer instead of copyAlon Zakai
2011-06-24Added some libc I/O stubs to get Python module importing to work:max99x
* fdopen: no-op. * __01lseek64_: linked tp fseek. * __01open64_: calls open() with swapped args. * unlink: no-op. * __01fstat64_: linked to fstat. Added myself to AUTHORS.
2011-06-24* corrected support for fileno(FILE *)tim.dawborn
2011-06-24Merge remote branch 'upstream/master'tim.dawborn
2011-06-23getcharAlon Zakai
2011-06-23* correction to fputs -- it should not add a trailing \n (puts does, fputs ↵tim.dawborn
does not) * corrected internal filennames of stderr and stdout * added default getgid(void) implementation to go with getuid(void)
2011-06-23* propogated return value from main back to the return value from Module.runtim.dawborn
* improved the behaviour of ungetc * added optional argument to intArrayFromString to not add the trailing NULL -- useful when adding JS strings as the data in the virtual file system
2011-06-19support for customizing interactive input by setting Module.stdinAlon Zakai
2011-06-18fixes for web text inputAlon Zakai
2011-06-17experimental support for web text inputAlon Zakai
2011-06-12ceilf and floorfAlon Zakai
2011-06-11optimize memset and memcpy in ta2Alon Zakai
2011-06-04optimize Pointer_make (both input size and processing time)Alon Zakai
2011-06-04refactor makeCopyValues and add makeSetValuesAlon Zakai
2011-06-04refactor makeCopyValueAlon Zakai
2011-06-03refactoring in preparation for TYPED_ARRAYS==2 (disabled)Alon Zakai
2011-05-28fixes for closure compiler advanced optsAlon Zakai
2011-05-26improve AUTO_OPTIMIZEAlon Zakai
2011-05-26improve CHECK_* options, add initial version of AUTO_OPTIMIZEAlon Zakai
2011-05-2564-bit bitopsAlon Zakai
2011-05-22exp2 in libraryAlon Zakai
2011-05-22CHECK_SIGNS fixAlon Zakai
2011-05-19initial work on SDL eventsAlon Zakai
2011-05-18stdio stuffAlon Zakai
2011-05-16compiler code is now js strict mode compliantAlon Zakai
2011-05-15support for reading files synchronouslyAlon Zakai
2011-05-13library stuffAlon Zakai
2011-05-12refactor library_sdlAlon Zakai
2011-04-24support for __cxa_atexit argumentAlon Zakai
2011-04-22work towards QUANTUM_SIZE=1 (unused)Alon Zakai
2011-04-21fix for printing very small floatsAlon Zakai