tor

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

b.c (123B)


      1 MOCK_IMPL(int,
      2 foo,(void))
      3 {
      4  // blah1
      5  return 0;
      6 }
      7 
      8 MOCK_IMPL(int,
      9 bar,( long z))
     10 {
     11  // blah2
     12 
     13  return (int)(z+2);
     14 }