add clib.json

This commit is contained in:
Peter McGoron 2024-06-02 22:27:02 -04:00
parent 6c54436b45
commit e93abe0ec0
2 changed files with 11 additions and 1 deletions

View File

@ -100,7 +100,6 @@ static void aatree_init(struct aatree *t)
# define aatree_assert(e) (void)0 # define aatree_assert(e) (void)0
#endif #endif
#include <stdio.h>
#include <limits.h> #include <limits.h>
static void aatree_relink(struct aatree *old, struct aatree *nw) static void aatree_relink(struct aatree *old, struct aatree *nw)
{ {

11
clib.json Normal file
View File

@ -0,0 +1,11 @@
{
"name" : "aatree",
"version" : "0.1.1",
"src" : [
"aatree.h"
],
"repo" : "https://software.mcgoron.com/clib/aatree",
"description" : "Single header file intrusive balanced tree implementation",
"license" : "BSD-2-Clause",
"keywords" : ["C89", "single-file", "intrusive", "imperative-binary-tree"]
}