aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-01-17Added blueprint, module license, and METADATA fileandroid-wear-p-preview-2android-wear-8.0.0_r1android-p-preview-5android-p-preview-4android-p-preview-3android-p-preview-2android-p-preview-1Janis Danisevskis
2018-01-17Merge upstream for the first timeJanis Danisevskis
Change-Id: Ia6a46e0ead462959993307dcc3d0dfbca045ce2e
2018-01-17Initial empty repository(raulenrique)
2017-10-12Merge pull request #43 from nmeum/gcc-7.2.0cabo
fix compilation error with gcc 7.2.0
2017-10-11fix compilation error with gcc 7.2.0Sören Tempel
2015-11-17Merge pull request #42 from hildjj/cmake-backportscabo
Make Travis cmake builds less interesting, hopefully faster as well
2015-11-17Make Travis cmake builds less interesting, hopefully faster as wellJoe Hildebrand
2015-09-02Merge pull request #41 from jimsch/bytescabo
Declare a byte version of the data (uint8_t *).
2015-09-01Declare a byte version of the dataJim Schaad
Declare a byte version of the data field. This fixes Issue #40
2015-08-27Merge pull request #38 from hildjj/mastercabo
Add Slack notifications for Travis builds
2015-08-27Add Slack notifications for Travis buildsJoe Hildebrand
2015-08-27Add travis badgeCarsten Bormann
2015-08-27Merge pull request #37 from hildjj/mastercabo
Travis CI integration
2015-08-27Simplify Travis build for nowJoe Hildebrand
2015-08-27Add .travis.ymlJoe Hildebrand
2015-08-26Merge pull request #36 from hildjj/free-rootcabo
Make clear that cn_cbor_free is there to free the root of a CBOR item tree. Get rid of a number of gratuitous const qualifiers.
2015-08-26docfixJoe Hildebrand
2015-08-26Remove extraneous const's, fix tests to match, and add an assert to ↵Joe Hildebrand
cn_cbor_free to ensure we're at the root. Freeing NULL is still allowed as a no-op.
2015-08-26Missing scratchbang somehow.Joe Hildebrand
2015-07-22Merge pull request #28 from obgm/mastercabo
Rename cbor_encoder_write() to cn_cbor_encoder_write()
2015-05-26Rename cbor_encoder_write() to cn_cbor_encoder_write()Olaf Bergmann
The public API prefixes all symbols with cn_cbor_, so it seems reasonable to rename cbor_encoder_write() to cn_cbor_encoder_write().
2015-05-08Merge pull request #20 from obgm/no-floatscabo
Make floats optional (fixes #8, also fixes #21, #22)
2015-04-24cmake: Add option no_floatsOlaf Bergmann
When set, the preprocessor symbol CBOR_NO_FLOAT will be set to 1.
2015-04-24Handle float test cases when CBOR_NO_FLOAT is setOlaf Bergmann
When support for floats is switched off, some parser tests do not show the expected results. This modification makes some tests check for the expected error code CN_CBOR_ERR_FLOAT_NOT_SUPPORTED and switches off a few other.
2015-04-24Optional float encoding/decodingOlaf Bergmann
When CBOR_NO_FLOAT is defined at build time, support for floating point types is switched off. When trying to parse a data item of type 7 and additional information 25 to 27 (i.e., items starting with 0xf9 to 0xfb), the parser will return the new error code CN_CBOR_ERR_FLOAT_NOT_SUPPORTED.
2015-04-06Document commands for testing and test coverage (closes #13)Carsten Bormann
2015-04-05Add branch coverage. Lots more tests needed, particularly ones that fail at ↵Joe Hildebrand
malloc.
2015-04-03Add a few floating point boundary cases to close #14Carsten Bormann
2015-04-03Add tests for denormalized half floatCarsten Bormann
2015-04-03separate the two personalities of write_byteCarsten Bormann
2015-04-03Add some basic normalizer testingCarsten Bormann
2015-04-03Encoder: do the float danceCarsten Bormann
2015-04-03Merge commit '77d31f0b63a8d07e02b7d6dff3d02ae2b5c31bf6'Carsten Bormann
* commit '77d31f0b63a8d07e02b7d6dff3d02ae2b5c31bf6': better const correctness
2015-04-03Update simple test with new CN_CBOR_UNDEFCarsten Bormann
2015-04-03Merge branch 'encoder-2' of https://github.com/hildjj/cn-cbor into ↵Carsten Bormann
hildjj-encoder-2-merge (pull request #10) # Conflicts: # src/cn-get.c
2015-04-02better const correctnessJoe Hildebrand
2015-04-03Merge branch 'hildjj-spudlib-merge' (pull request #9)Carsten Bormann
2015-04-03Merge branch 'spudlib-merge' of https://github.com/hildjj/cn-cbor into ↵Carsten Bormann
hildjj-spudlib-merge # Conflicts: # README.md # cn-manip.c # include/cn-cbor/cn-cbor.h # src/cn-get.c # src/cn-manip.c
2015-04-02Add another testJoe Hildebrand
2015-04-02untabify. try and prevent tab creep in the futureJoe Hildebrand
2015-04-02Rename old Makefile to Simple-Makefile, so cmake can have its wayCarsten Bormann
2015-04-02make comment fit testJoe Hildebrand
2015-04-02the diff tests won't work on non-APPLE systemsJoe Hildebrand
2015-04-02arpa/inet.h was added so that cn-cbor.c will compile on Linux. I'm willing ↵Joe Hildebrand
to put it in an ifdef, or add a config.h if you like; i don't think it hurts anything on non-Linux builds though
2015-04-02Anything that takes an error pointer should have a checkable return valueJoe Hildebrand
2015-04-01indentationJoe Hildebrand
2015-04-02Directory structure (prepare for pulling PR 9)Carsten Bormann
2015-04-01make sure size_t and ssize_t are includedJoe Hildebrand
2015-04-01make it work with contexts againJoe Hildebrand
2015-04-02Merge pull request #4 from hildjj/mastercabo
several changes