1
2
3This is the development reference of [libcbor](https://github.com/PJK/libcbor). Looking for the [user documentation](https://libcbor.readthedocs.io/)?
4
5
6# Where to start
7
8A couple of pointers for you to start with: `0x00000000`, `0xDEADBEEF`.
9
10If you just want to peek under the hood, have a look at:
11 - \ref src/cbor/common.h
12 - \ref src/cbor/encoding.h
13 - \ref src/cbor.h
14
15If you want to implement your own decoder or see how the default one is made:
16 - \ref src/cbor/internal/builder_callbacks.h
17 - \ref src/cbor/internal/stack.h
18
19For details on encoding and packing (could be useful when porting to exotic platforms):
20 - \ref src/cbor/internal/encoders.h
21 - \ref src/cbor/internal/loaders.h
22
23Streaming driver:
24 - \ref src/cbor/streaming.h
25
26Manipulation routines for particular types:
27 - \ref src/cbor/ints.h
28 - \ref src/cbor/bytestrings.h
29 - \ref src/cbor/strings.h
30 - \ref src/cbor/arrays.h
31 - \ref src/cbor/maps.h
32 - \ref src/cbor/tags.h
33 - \ref src/cbor/floats_ctrls.h
34
35# How to contribute
36
37Please refer to [the repository](https://github.com/PJK/libcbor)
38