mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 13:43:47 +01:00
16 lines
123 B
C
16 lines
123 B
C
|
|
||
|
MOCK_IMPL(int,
|
||
|
foo,(void))
|
||
|
{
|
||
|
// blah1
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
MOCK_IMPL(int,
|
||
|
bar,( long z))
|
||
|
{
|
||
|
// blah2
|
||
|
|
||
|
return (int)(z+2);
|
||
|
}
|