scnlib icon indicating copy to clipboard operation
scnlib copied to clipboard

scanf for modern C++

Results 38 scnlib issues
Sort by recently updated
recently updated
newest added

Version 1.1.2 ``` #include #include #include #include int main() { const char* s = "+12345"; std::string_view sv( s ); double x; auto r = scn::scan( sv, "{}", x ); if...

scnlibs fuzzing suite can run in the CI with [ClusterfuzzLite](https://google.github.io/clusterfuzzlite/). ClusterfuzzLite can be set up so that only fuzzers affected by a given PR will run. Is that something that...

Adds missing inline. Requires C++17

Adds missing inline to wrap_result

Adds missing inline so that the wrap symbol is not duplicated in every compilation unit

#### https://scnlib.readthedocs.io/en/latest/guide.html?highlight=make_value#scn-scan-value ``` To use make_result with make_value, this needs to be taken into account ``` Not sure, but I guess this should probably be `scan_value` instead of `make_value`: ```...

Resolves non-locale problems listed in #69. ~~There are probably a few sections which do not require conditional compilation, as eliminating calls further up the chain would suffice. But I have...

This fixes the remaining issues in #69. It was not as difficult as I imagined, but it took a much deeper understanding of the codebase. Note that I dropped the...

### Problem This is a great library, but there are a few changes that would drastically improve support for embedded targets. These ideas are mostly based on what has been...

I am reading 962 lines of text from a file, as 3 comma separated strings. Source code (note I elided some error checking for clarity): STL: ``` while (true) {...