tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

fe_copy.c (454B)


      1 #include "fe.h"
      2 
      3 /*
      4 h = f
      5 */
      6 
      7 void fe_copy(fe h,const fe f)
      8 {
      9  crypto_int32 f0 = f[0];
     10  crypto_int32 f1 = f[1];
     11  crypto_int32 f2 = f[2];
     12  crypto_int32 f3 = f[3];
     13  crypto_int32 f4 = f[4];
     14  crypto_int32 f5 = f[5];
     15  crypto_int32 f6 = f[6];
     16  crypto_int32 f7 = f[7];
     17  crypto_int32 f8 = f[8];
     18  crypto_int32 f9 = f[9];
     19  h[0] = f0;
     20  h[1] = f1;
     21  h[2] = f2;
     22  h[3] = f3;
     23  h[4] = f4;
     24  h[5] = f5;
     25  h[6] = f6;
     26  h[7] = f7;
     27  h[8] = f8;
     28  h[9] = f9;
     29 }