summaryrefslogtreecommitdiff
path: root/arraylist.h
diff options
context:
space:
mode:
authorEric Haszlakiewicz <erh+git@nimenees.com>2017-12-06 23:56:23 -0500
committerEric Haszlakiewicz <erh+git@nimenees.com>2017-12-06 23:58:33 -0500
commitd582d3ae5afdc5d42a972cdf4fee6b731f6fe539 (patch)
tree1ab6fba2a4dcedc4b3dd6450a95dab1f6c3ff6d9 /arraylist.h
parent8c82f0e5c31e90e958a9cbbd7b5ea8e1e4f5e493 (diff)
downloadjson-c-d582d3ae5afdc5d42a972cdf4fee6b731f6fe539.tar.gz
Undeprecate the array_list, lh_table and printbuf typedefs, but move each to the corresponding header files.
Diffstat (limited to 'arraylist.h')
-rw-r--r--arraylist.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/arraylist.h b/arraylist.h
index 2cac236..38603e8 100644
--- a/arraylist.h
+++ b/arraylist.h
@@ -33,6 +33,7 @@ struct array_list
size_t size;
array_list_free_fn *free_fn;
};
+typedef struct array_list array_list;
extern struct array_list*
array_list_new(array_list_free_fn *free_fn);