Anatol Belski
Anatol Belski
There is a serialization support for lexertl https://github.com/BenHanson/lexertl14/blob/master/lexertl/serialise.hpp, however it depends on Boost and likely has some specific format. For the parser there's ATM no such code, so far I...
Thanks for the report. Internally `lexertl` uses C++ streams, that's the reason for the discrepancy with PHP. I'd be hesitant patching the bundled library however, as it's not future oriented....
From my curent experience with the standard SAPIs and platforms, there is no real distinct way to catch all the cases. The clear white list cases are: - Apache mpm_prefork...
@dstogov, yeah, most likely it's a user space task to convert. Crossplatform it would be mbstring, Windows only there's a conversion API used for UTF-8 path support. I'll check that...
I come with this snippet after playing a bit ```
@dstogov thanks for checking. The issue with `$ign = FFI::new("size_t");` in this case is, that it's not a pointer. Say a simpler hypothetic function ``` char *gen_str(size_t *n) { size_t...
@dstogov thanks for the fixes. I can confirm `FFI::free()` works correctly now. With `FFI::cast()`, the actual example above works now like here (partial snippet) ``` $ign = FFI::new("size_t"); $ign =...
@dstogov yep, the last case is invalid in C. Probably would be ok to leave it as is in FFI, too. Otherwise it would be too much complication. As for...
I've added a step to the Jenkinsfile, but looks like it's not picked up automatically. Probably this needs to be handled separately? Thanks
ACK, fixed to only run the musl test variant. Thanks