diff options
author | Mattias Andrée <maandree@kth.se> | 2019-02-11 16:57:26 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2019-02-11 16:57:54 +0100 |
commit | 3547923d8653d72fe8a6a305107ed2e5dca6577c (patch) | |
tree | aa08e3ca8cb8d7f7b64126a6687af4abbe0994ef /libkeccak_degeneralise_spec.c | |
parent | Split most .c files into one per function and flatten file hierarchy (diff) | |
download | libkeccak-3547923d8653d72fe8a6a305107ed2e5dca6577c.tar.gz libkeccak-3547923d8653d72fe8a6a305107ed2e5dca6577c.tar.bz2 libkeccak-3547923d8653d72fe8a6a305107ed2e5dca6577c.tar.xz |
Deprecate typedefs
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'libkeccak_degeneralise_spec.c')
-rw-r--r-- | libkeccak_degeneralise_spec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libkeccak_degeneralise_spec.c b/libkeccak_degeneralise_spec.c index 13963f8..ec3eb56 100644 --- a/libkeccak_degeneralise_spec.c +++ b/libkeccak_degeneralise_spec.c @@ -13,7 +13,7 @@ /** - * Convert a `libkeccak_generalised_spec_t` to a `libkeccak_spec_t` + * Convert a `struct libkeccak_generalised_spec` to a `struct libkeccak_spec` * * If you are interrested in finding errors, you should call * `libkeccak_spec_check(output)` if this function returns zero @@ -23,8 +23,8 @@ * @return Zero if `spec` is valid, a `LIBKECCAK_GENERALISED_SPEC_ERROR_*` if an error was found */ int -libkeccak_degeneralise_spec(libkeccak_generalised_spec_t *restrict spec, - libkeccak_spec_t *restrict output_spec) +libkeccak_degeneralise_spec(struct libkeccak_generalised_spec *restrict spec, + struct libkeccak_spec *restrict output_spec) { long int state_size, word_size, capacity, bitrate, output; const int have_state_size = have(state_size); |