claudix

Results 5 issues of claudix

Added rules to compile on MinGW platforms (Microsoft Windows environments): - Use 'gcc' as compiler. - Generate DLL file when compiling the library. - Disable -fPIC when compiling the library...

I have added support for passing a user argument to custom memory allocation functions as discussed in [https://github.com/akheron/jansson/issues/225](https://github.com/akheron/jansson/issues/225) In particular: - Two additional types have been created: **json_malloc_arg_t** and **json_free_arg_t**,...

It'd be interesting to pass a user argument to custom allocation functions. For example: ``` c void *my_malloc(size_t sz, void *userarg) { ... } void my_free(void *p, void *userarg) {...

Hi, I'm working with Lua 5.3 and I found this piece of code really cool. I have made some changes in my copy of your code for adding new table...