├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── .travis.yml ├── COPYING ├── Makefile.am ├── README.md ├── ac └── .gitignore ├── c-capnproto.pc.in ├── compiler ├── c++.capnp ├── c++.capnp.c ├── c++.capnp.h ├── c.capnp ├── c.capnp.c ├── c.capnp.h ├── capnpc-c.c ├── schema-test.cpp ├── schema.capnp ├── schema.capnp.c ├── schema.capnp.h ├── str.c ├── str.h ├── test.capnp ├── test.capnp.c ├── test.capnp.h └── update-notes.md ├── configure.ac ├── lib ├── capn-list.inc ├── capn-malloc.c ├── capn-stream.c ├── capn.c ├── capnp_c.h └── capnp_priv.h ├── m4 └── .gitignore ├── meson.build ├── meson_options.txt ├── subprojects └── gtest.wrap └── tests ├── addressbook.capnp ├── addressbook.capnp.c ├── addressbook.capnp.h ├── capn-stream-test.cpp ├── capn-test.cpp └── example-test.cpp /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/README.md -------------------------------------------------------------------------------- /ac/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /c-capnproto.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/c-capnproto.pc.in -------------------------------------------------------------------------------- /compiler/c++.capnp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/compiler/c++.capnp -------------------------------------------------------------------------------- /compiler/c++.capnp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/compiler/c++.capnp.c -------------------------------------------------------------------------------- /compiler/c++.capnp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/compiler/c++.capnp.h -------------------------------------------------------------------------------- /compiler/c.capnp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/compiler/c.capnp -------------------------------------------------------------------------------- /compiler/c.capnp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/compiler/c.capnp.c -------------------------------------------------------------------------------- /compiler/c.capnp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/compiler/c.capnp.h -------------------------------------------------------------------------------- /compiler/capnpc-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/compiler/capnpc-c.c -------------------------------------------------------------------------------- /compiler/schema-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/compiler/schema-test.cpp -------------------------------------------------------------------------------- /compiler/schema.capnp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/compiler/schema.capnp -------------------------------------------------------------------------------- /compiler/schema.capnp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/compiler/schema.capnp.c -------------------------------------------------------------------------------- /compiler/schema.capnp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/compiler/schema.capnp.h -------------------------------------------------------------------------------- /compiler/str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/compiler/str.c -------------------------------------------------------------------------------- /compiler/str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/compiler/str.h -------------------------------------------------------------------------------- /compiler/test.capnp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/compiler/test.capnp -------------------------------------------------------------------------------- /compiler/test.capnp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/compiler/test.capnp.c -------------------------------------------------------------------------------- /compiler/test.capnp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/compiler/test.capnp.h -------------------------------------------------------------------------------- /compiler/update-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/compiler/update-notes.md -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/configure.ac -------------------------------------------------------------------------------- /lib/capn-list.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/lib/capn-list.inc -------------------------------------------------------------------------------- /lib/capn-malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/lib/capn-malloc.c -------------------------------------------------------------------------------- /lib/capn-stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/lib/capn-stream.c -------------------------------------------------------------------------------- /lib/capn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/lib/capn.c -------------------------------------------------------------------------------- /lib/capnp_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/lib/capnp_c.h -------------------------------------------------------------------------------- /lib/capnp_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/lib/capnp_priv.h -------------------------------------------------------------------------------- /m4/.gitignore: -------------------------------------------------------------------------------- 1 | *.m4 2 | -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/meson_options.txt -------------------------------------------------------------------------------- /subprojects/gtest.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/subprojects/gtest.wrap -------------------------------------------------------------------------------- /tests/addressbook.capnp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/tests/addressbook.capnp -------------------------------------------------------------------------------- /tests/addressbook.capnp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/tests/addressbook.capnp.c -------------------------------------------------------------------------------- /tests/addressbook.capnp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/tests/addressbook.capnp.h -------------------------------------------------------------------------------- /tests/capn-stream-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/tests/capn-stream-test.cpp -------------------------------------------------------------------------------- /tests/capn-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/tests/capn-test.cpp -------------------------------------------------------------------------------- /tests/example-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcerouting/c-capnproto/HEAD/tests/example-test.cpp --------------------------------------------------------------------------------