]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - xtea/xtea.h
global style change (now * is attached to identifier not to type)
[avr-crypto-lib.git] / xtea / xtea.h
index b753bf753a469165b72e0f7aad1d68bf7ececc00..64bf827fd1660c6e34db7d86604ec72e724f34e6 100644 (file)
@@ -42,8 +42,8 @@
  * v:   the block to operate on (64 bit)
  * k:   the key for en/decryption (128 bit)
  */
-void xtea_enc(void* dest, const void* v, const void* k);
-void xtea_dec(void* dest, const void* v, const void* k);
+void xtea_enc(void *dest, const void *v, const void *k);
+void xtea_dec(void *dest, const void *v, const void *k);
 
 
 #endif /*XTEA_H_*/