How this analysis was created: This summary and feature list were written by an AI model that read the project's README and public documentation pages. Each feature links to the documentation it came from; stars, license and language come straight from the GitHub API. The model does not read the source code, and the analysis is refreshed when the project is re-analysed. Learn more on our About page.
sds is a C dynamic string library that provides a memory management wrapper for heap-allocated strings. It implements binary-safe storage by tracking string lengths explicitly, allowing the library to handle null characters within data. The library distinguishes itself through a memory architecture that uses interchangeable function pointers for allocation and freeing, enabling the integration of custom memory managers. It utilizes header-stored length tracking to provide constant-time length retrieval and maintains null-terminated buffer padding to ensure compatibility with standard C string
Super Light Regexp engine for C/C++
The main features of cesanta/slre are: Development Utilities, Regex Libraries, Regular Expressions, Windows Environments.
Open-source alternatives to cesanta/slre include: laurikari/tre — The approximate regex matching library and agrep command line tool. openresty/sregex — A non-backtracking NFA/DFA-based Perl-compatible regex engine matching on large data streams. antirez/sds — sds is a C dynamic string library that provides a memory management wrapper for heap-allocated strings. It implements… kkos/oniguruma — regular expression library. nasciiboy/recursiveregexpraptor-4 — regexp4 engine (C-lang). verbalexpressions/cppverbalexpressions — C++ regular expressions made easy.