diff options
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -35,19 +35,19 @@ The project's page is at http://winni.vdr-developer.org/epgsearch // A function adding two integers and returning the result int SampleAddInt(int i1, int i2) { - return i1 + i2; + return i1 + i2; } // A function doing nothing ;) void SampleFunction1() { - // insert code here + // insert code here } // A function always returning zero int SampleFunction2() { - // insert code here + // insert code here - return 0; + return 0; } |