diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-05-31 11:55:50 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-05-31 12:01:30 -0400 |
commit | 118a9053f04d0e215bb3fe20562990cc73ae69a2 (patch) | |
tree | e9e5ca73377f272d6348f15c5b4dd7b75f01ff5a /tests/tests.h | |
parent | 407e6f57bfc05c51d32d4292218f0bdd8eeaa142 (diff) | |
download | bfs-118a9053f04d0e215bb3fe20562990cc73ae69a2.tar.xz |
list: New SLIST_SPLICE() macro
Diffstat (limited to 'tests/tests.h')
-rw-r--r-- | tests/tests.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/tests.h b/tests/tests.h index de95a49..2958fe1 100644 --- a/tests/tests.h +++ b/tests/tests.h @@ -27,6 +27,9 @@ bool check_bit(void); /** I/O queue tests. */ bool check_ioq(void); +/** Linked list tests. */ +bool check_list(void); + /** Signal hook tests. */ bool check_sighook(void); |