rxi
rxi
Looks good, some minor problems: - Both comments have a spelling error - Both comments use the format `/** */` instead of `/* */` - Space at the start of...
Sounds good -- If you want to make a pull request with this change, assure it works as expected with C++ and doesn't change the existing behaviour with C I...
`-Wall -Wextra -std=c89 -pedantic` should be all you need.
Regarding `sprintf` -- this function is only used in 3 places: - Converting a double to a string, which should never exceed the buffer size - Creating a type-string, which...
I was aware of this already, and am not using `vsnprintf` for the reason you mentioned. Additionally I'm not in favour of implementing a subset of printf formatting directly; one...
Thanks for letting me know! I'd read about the new batching in `11.0` — while autobatch still gives a performance improvement, and assuming it isn't too much hassle, it may...
Replace: ```lua else rawget(self, key) ``` with: ```lua else return rawget(C, key) or C.super[key] ```
Hey, Sorry for the slow response! Would you mind closing this pull request and instead submit the rockspec addition as a separate pull request, ideally with a cleaner commit history?...
Yes — If you build and run the [echo server example](https://github.com/rxi/dyad/blob/master/example/echoserv.c), the following python script could be used on the same machine to connect to it: ```python import socket s...
There isn't a way to do this if I recall. Unless I'm forgetting an actual reason this wasn't added, the functionality should be trivial to add by implementing two functions:...