1 #include "sc25519.h"
2 
sc25519_iszero_vartime(const sc25519 * x)3 int sc25519_iszero_vartime(const sc25519 *x)
4 {
5   if(x->v[0] != 0) return 0;
6   if(x->v[1] != 0) return 0;
7   if(x->v[2] != 0) return 0;
8   if(x->v[3] != 0) return 0;
9   return 1;
10 }
11