diff main.c @ 0:7a85919442f2

Initial add -- test application for use while developing VSs features
author Sean Halle <seanhalle@yahoo.com>
date Wed, 01 Aug 2012 01:08:02 -0700
parents
children 1c9122bfd1c8
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/main.c	Wed Aug 01 01:08:02 2012 -0700
     1.3 @@ -0,0 +1,24 @@
     1.4 +/*
     1.5 + *  Copyright 2012 OpenSourceResearchInstitute.org
     1.6 + *  Licensed under GNU General Public License version 2
     1.7 + *
     1.8 + * author seanhalle@yahoo.com
     1.9 + */
    1.10 +
    1.11 +#include <malloc.h>
    1.12 +#include <stdlib.h>
    1.13 +
    1.14 +#include "VSs__Test_App/VSs__Test_App.h"
    1.15 +
    1.16 +/*
    1.17 + * 
    1.18 + */
    1.19 +int main( int argc, char **argv )
    1.20 + { 
    1.21 +   
    1.22 +   DEBUG__printf2(TRUE, "arguments: %s | %s", argv[0], argv[1] );
    1.23 +   
    1.24 +   VSs__Test_App( );
    1.25 +   
    1.26 +   exit(0); //cleans up
    1.27 + }