aboutsummaryrefslogtreecommitdiffstats
path: root/src/reader.c
AgeCommit message (Expand)AuthorFilesLines
2022-01-13Simplify ByteSource implementationDavid Robillard1-5/+0
2022-01-13Be precise about the meaning of node "length" and "size"David Robillard1-7/+9
2022-01-13Align nodes on the reader stackDavid Robillard1-2/+2
2022-01-13Replace serd_reader_set_strict() with SerdReaderFlagsDavid Robillard1-7/+2
2022-01-13Handle read errors more preciselyDavid Robillard1-1/+16
2022-01-13Split up serd_internal.hDavid Robillard1-1/+1
2022-01-13Simplify streaming API and improve pretty printingDavid Robillard1-1/+1
2022-01-13Add SerdStatementDavid Robillard1-2/+6
2022-01-13Add SerdCaretDavid Robillard1-13/+17
2022-01-13Remove serd_reader_set_default_graph()David Robillard1-22/+7
2022-01-13Move fopen wrapper to worldDavid Robillard1-1/+1
2022-01-13Move error handling to worldDavid Robillard1-1/+2
2022-01-13Add SerdWorld for shared library stateDavid Robillard1-11/+4
2022-01-13Improve reader error handlingDavid Robillard1-0/+4
2022-01-13Zero node padding before passing to reader sinksDavid Robillard1-0/+4
2022-01-13Simplify stack management by popping in bulk at higher levelsDavid Robillard1-27/+7
2022-01-13Use a fixed-size reader stackDavid Robillard1-35/+48
2022-01-13Simplify reader interfaceDavid Robillard1-116/+49
2022-01-13Add SerdSink interface and hide implementationsDavid Robillard1-36/+15
2022-01-13Bring read/write interface closer to C standardDavid Robillard1-4/+4
2022-01-13Merge datatype/language into nodeDavid Robillard1-8/+2
2022-01-13Simplify URI API and implementationDavid Robillard1-1/+1
2022-01-13Make nodes opaqueDavid Robillard1-21/+20
2022-01-13Remove "get" from accessor namesDavid Robillard1-1/+1
2022-01-13Rename function types for consistencyDavid Robillard1-13/+13
2022-01-13Rename SerdType to SerdNodeTypeDavid Robillard1-9/+9
2022-01-13Use char* for strings in public APIDavid Robillard1-23/+22
2022-01-13Remove useless character countingDavid Robillard1-5/+5
2021-05-31Make most function parameters constDavid Robillard1-56/+68
2021-05-31Fix include orderDavid Robillard1-1/+2
2021-01-10Add missing includesDavid Robillard1-0/+2
2021-01-02Use email address instead of website for attributionDavid Robillard1-1/+1
2020-12-31Format all code with clang-formatDavid Robillard1-213/+216
2020-12-31Avoid "else" after "break" and "return"David Robillard1-1/+3
2020-11-13Improve add and chop prefix functions when given empty stringsDavid Robillard1-4/+5
2020-08-16Ensure that all free methods tolerate NULLDavid Robillard1-0/+4
2020-08-15Clean up reader error handlingDavid Robillard1-19/+27
2020-08-15Make r_err() return a statusDavid Robillard1-2/+2
2020-08-15Fix stack check C++ compatibilityDavid Robillard1-1/+1
2020-08-14Clean up and separate internal headersDavid Robillard1-0/+2
2020-07-05Remove redundant switch statementDavid Robillard1-3/+1
2020-06-21Clean up includesDavid Robillard1-2/+1
2019-12-08Fix reading from a null-delimited socketDavid Robillard1-0/+6
2019-10-27Simplify syntax dispatch conditionDavid Robillard1-4/+2
2019-10-27Fix integer conversion warningsDavid Robillard1-3/+3
2019-01-05Fix unused parameter warningsDavid Robillard1-0/+3
2018-07-22Add serd_free for freeing memory allocated by serdDavid Robillard1-1/+1
2018-06-15Remove redundant SERD_API declarationsDavid Robillard1-15/+0
2018-06-10Fix byte source to never read past end of stringsDavid Robillard1-8/+4
2018-02-04Factor out syntax-specific reader implementationDavid Robillard1-1601/+37