]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - bigint/bigint_adjust.S
global style change (now * is attached to identifier not to type)
[avr-crypto-lib.git] / bigint / bigint_adjust.S
index 56ff2a1e5c655953064bc7e3cf1f5912608d6b15..5bdfccaaf5a7980417202f3c313e83f6af5e1e26 100644 (file)
@@ -18,7 +18,7 @@
 */
 
 /*
-void bigint_adjust(bigint_ta){
+void bigint_adjust(bigint_t *a){
        while(a->length_B!=0 && a->wordv[a->length_B-1]==0){
                a->length_B--;
        }
@@ -76,7 +76,7 @@ bigint_adjust_ret:
        ret
 
 /*
-void bigint_copy(bigint_t* dest, const bigint_t* src){
+void bigint_copy(bigint_t *dest, const bigint_t *src){
        memcpy(dest->wordv, src->wordv, src->length_B);
        dest->length_B = src->length_B;
        dest->info = src->info;