brintos

brintos / llvm-project-archived public Read only

0
0
Text · 111 B · 303d114 Raw
12 lines · c
1template<typename T>2T pow(T b, T p) {3  if (!p)4    return 1;5 6  while (--p) {7    b *= b;8  }9 10  return b;11}12