-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Eduardo Silva <[email protected]>
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule cfl
updated
17 files
+2 −2 | CMakeLists.txt | |
+1 −0 | include/cfl/cfl.h | |
+9 −6 | include/cfl/cfl_array.h | |
+2 −0 | include/cfl/cfl_compat.h | |
+55 −1 | include/cfl/cfl_kvlist.h | |
+41 −0 | include/cfl/cfl_object.h | |
+31 −10 | include/cfl/cfl_variant.h | |
+1 −0 | src/CMakeLists.txt | |
+60 −12 | src/cfl_array.c | |
+194 −89 | src/cfl_kvlist.c | |
+106 −0 | src/cfl_object.c | |
+57 −12 | src/cfl_variant.c | |
+3 −0 | tests/CMakeLists.txt | |
+387 −0 | tests/array.c | |
+1,197 −0 | tests/kvlist.c | |
+58 −0 | tests/object.c | |
+92 −2 | tests/variant.c |