23 lines
340 B
C++
23 lines
340 B
C++
#include "foo.h"
|
|
|
|
#include "lib1.h"
|
|
#include "lib2.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
int main ()
|
|
{
|
|
if ( Lib1Func() != 2.0 )
|
|
{
|
|
printf("Problem with lib1\n");
|
|
return 1;
|
|
}
|
|
if ( Lib2Func() != 1.0 )
|
|
{
|
|
printf("Problem with lib2\n");
|
|
return 1;
|
|
}
|
|
printf("The value of Foo: %s\n", foo);
|
|
return SomeFunctionInFoo()-5;
|
|
}
|