]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - whirlpool/whirlpool.h
global style change (now * is attached to identifier not to type)
[avr-crypto-lib.git] / whirlpool / whirlpool.h
index d65f6e61c39f114fd6c8d33aa86f1bf3edfbcf73..3c13d1e838224f82ed23674e9d76fe7d69af7e15 100644 (file)
@@ -28,9 +28,9 @@ typedef struct {
 } whirlpool_ctx_t;
 
 
-void whirlpool_init(whirlpool_ctx_tctx);
-void whirlpool_nextBlock(whirlpool_ctx_t* ctx,const void* block);
-void whirlpool_lastBlock(whirlpool_ctx_t* ctx, const void* block, uint16_t length_b);
-void whirlpool_ctx2hash(void* dest, const whirlpool_ctx_t* ctx);
+void whirlpool_init(whirlpool_ctx_t *ctx);
+void whirlpool_nextBlock(whirlpool_ctx_t *ctx,const void *block);
+void whirlpool_lastBlock(whirlpool_ctx_t *ctx, const void *block, uint16_t length_b);
+void whirlpool_ctx2hash(void *dest, const whirlpool_ctx_t *ctx);
 
 #endif /* WIRLPOOL_H_ */