Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-12-02 | Make r_err take a single line without trailing newline | David Robillard | 1 | -0/+1 | |
Towards having an actual logging (rather than printing) mechanism. | |||||
2023-12-02 | Add assertions for all non-null pointers in the public API | David Robillard | 1 | -0/+2 | |
2023-12-02 | Use a simple type-safe stack in writer | David Robillard | 1 | -0/+1 | |
2023-12-02 | Add a set of limits to the world | David Robillard | 1 | -1/+18 | |
The idea here is to remove the burden of passing things around like stack sizes (where most users don't care and will be happy with a reasonably large default) and keeping the call sites to things like serd_reader_new() clean. The cost is a bit more state, so it's both more powerful and more potentially flaky, since changing the limits has action at a distance that isn't clear from the call site. I think it's worth it for the cleaner API in the common case, and the much better forward compatibility. | |||||
2023-12-02 | Add SerdCaret | David Robillard | 1 | -6/+12 | |
2023-12-02 | Add serd_world_get_blank() | David Robillard | 1 | -2/+36 | |
2023-12-02 | Use thread-safe strerror_r() if available | David Robillard | 1 | -6/+6 | |
2023-12-02 | Move fopen wrapper to world | David Robillard | 1 | -0/+28 | |
2023-12-02 | Move error handling to world | David Robillard | 1 | -2/+47 | |
2023-12-02 | Add SerdWorld for shared library state | David Robillard | 1 | -0/+29 | |