Added webapp entry point... no implementation yet

This commit is contained in:
Stuart Longland 2008-01-04 22:45:41 +10:00
parent eb0c9d0d10
commit 86eb0e9598
2 changed files with 15 additions and 0 deletions

7
include/main.h Normal file
View File

@ -0,0 +1,7 @@
#ifndef _MAIN_H
#define _MAIN_H
/* Entry point into entire webapp */
int main( int argc, char** argv );
#endif

8
src/main.c Normal file
View File

@ -0,0 +1,8 @@
#include <main.h>
/* Entry point into entire webapp */
int main( int argc, char** argv ) {
/* TODO */
return 0;
}