tor

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

ceil_div.cocci (67B)


      1 @@
      2 expression n, d;
      3 @@
      4 
      5 - (((n) + (d) - 1) / (d))
      6 + CEIL_DIV(n, d)