aboutsummaryrefslogtreecommitdiff
path: root/src/library.js
AgeCommit message (Collapse)Author
2011-09-13Added a few extra library aliases.max99x
2011-09-10library aliases and stubsAlon Zakai
2011-09-07additional library aliasesAlon Zakai
2011-09-07Canceling a window.prompt() for the default stdin handler no longer results ↵max99x
in an EOF.
2011-09-07Made sure XHRs request typed arrays only if they can handle them.max99x
2011-09-06some library aliasesAlon Zakai
2011-09-04stubs for lifecycle intrinsics, and do not generate calls to stubsAlon Zakai
2011-09-03fix expect bug in library, fixes dlmalloc testAlon Zakai
2011-09-01fix parsing bugsAlon Zakai
2011-08-30Merge pull request #75 from max99x/masterAlon Zakai
Eliminator update, strtox(), Closure compatibility and other fixes
2011-08-30Added setjmp/longjmp aliases.max99x
2011-08-30Updated $ENV initialization to be Closure-friendly.max99x
2011-08-30Added another scanf alias; fixed vsscanf's alias.max99x
2011-08-29Added v*scanf aliases.max99x
2011-08-28Added a missing alias.max99x
2011-08-28Fix for field size in _scanString().max99x
2011-08-28Minor Closure Compiler compatibility fixes.max99x
2011-08-28Removed old redundant stro[u]l() definitions.max99x
2011-08-28misc library additionsAlon Zakai
2011-08-28Fixed negatives in strtod(); implemented strto[l/ul/ll/ull]().max99x
2011-08-27tweak strdupAlon Zakai
2011-08-27Simplified strdup(); added test for it in test_strings.max99x
2011-08-27Returning safe value from setlocale().max99x
2011-08-27Fixed strdup() address/value switch.max99x
2011-08-27Implemented realpath().max99x
2011-08-27Made isatty() always fail. We don't support proper terminal control anyway.max99x
2011-08-27Fixed missing path in streams of files created using open().max99x
2011-08-27Fixed stdin failure in strict mode.max99x
2011-08-25Reverted getc()/putc() buffers to static, but via a postset;max99x
Style fixes in response to code review.
2011-08-25Switched getc/putc buffers to be allocated on the stack.max99x
2011-08-25Moved errno buffer out of $FS.max99x
2011-08-25Fixed _formatString()/printf() for USE_TYPED_ARRAYS + test for it.max99x
2011-08-25Updated uses of varargs in the library to C style.max99x
2011-08-24tweak some allocations in library to prevent problems with debug printing ↵Alon Zakai
inside malloc calls
2011-08-23Implemented rand(), rand_r() and srand() using a simple Linear Congruential ↵max99x
Generator.
2011-08-23Added strcoll() and strtoul() and improved strtol().max99x
2011-08-20Fix for IE9 which has no XMLHttpRequest.overrideMimeType().max99x
2011-08-18Added always-failing stubs for str[fp]time() and getdate().max99x
2011-08-18Optimized strdup(), which is a CPython bottleneck.max99x
2011-08-17Implemented nl_langinfo().max99x
2011-08-07filesystem workaround for closure compiler, +closure compiler testAlon Zakai
2011-08-06Replaced "new Date.getTime()" with "Date.now()";max99x
Added a note about shared lib static allocations.
2011-08-05Clarified empty loop to avoid closure compiler warning.max99x
2011-08-05Added support for both "environ" and "__environ" global symbols.max99x
2011-08-05Fixed stdin bugging out after its first buffer is empty;max99x
Fixed fgets() stripping trailing newline; Added warning about the inability to read binaries from command line.
2011-08-02Minor filesystem/unistd fixes.max99x
2011-08-02Polish for dlfcn.h.max99x
2011-08-02Switched file timestamps from Date objects to numbers.max99x
2011-08-02Fixed a too-early use of malloc in buildEnvironment;max99x
Switched runtime allocs to malloc in the library.
2011-07-30Merge pull request #58 from max99x/masterkripken
Environment and lib fixes (ctype.h, math.h)