"Fossies" - the Fresh Open Source Software Archive

Member "tor-0.4.8.9/scripts/maint/practracker/testdata/b.c" (9 Nov 2023, 123 Bytes) of package /linux/misc/tor-0.4.8.9.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file.

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