Added webapp entry point... no implementation yet
This commit is contained in:
parent
eb0c9d0d10
commit
86eb0e9598
7
include/main.h
Normal file
7
include/main.h
Normal 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
8
src/main.c
Normal file
@ -0,0 +1,8 @@
|
||||
#include <main.h>
|
||||
|
||||
|
||||
/* Entry point into entire webapp */
|
||||
int main( int argc, char** argv ) {
|
||||
/* TODO */
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user