diff options
author | Mattias Andrée <maandree@kth.se> | 2022-02-19 10:21:24 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2022-02-19 10:21:24 +0100 |
commit | 69456cfa1811570407aebcd67f7a3ed5199efa15 (patch) | |
tree | 66592709a4c9fd48f86a99c747506fed9488056c /libblake_blake224_init.c | |
parent | Properly group code in libblake.h (diff) | |
download | libblake-69456cfa1811570407aebcd67f7a3ed5199efa15.tar.gz libblake-69456cfa1811570407aebcd67f7a3ed5199efa15.tar.bz2 libblake-69456cfa1811570407aebcd67f7a3ed5199efa15.tar.xz |
Add some documentation, add const, and make some functions inline
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'libblake_blake224_init.c')
-rw-r--r-- | libblake_blake224_init.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/libblake_blake224_init.c b/libblake_blake224_init.c index f133887..99db72b 100644 --- a/libblake_blake224_init.c +++ b/libblake_blake224_init.c @@ -1,8 +1,4 @@ /* See LICENSE file for copyright and license details. */ #include "common.h" -void -libblake_blake224_init(struct libblake_blake224_state *state) -{ - libblake_blake224_init2(state, NULL); -} +extern inline void libblake_blake224_init(struct libblake_blake224_state *state); |