os/ossrv/glib/tests/helloworld.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/* Portions copyright (c) 2009 Nokia Corporation.  All rights reserved.*/
sl@0
     2
/* Description:
sl@0
     3
* This is a test application used by g_spawn APIs. This application
sl@0
     4
* is spawned by them.
sl@0
     5
*/
sl@0
     6
sl@0
     7
#include <stdio.h>
sl@0
     8
sl@0
     9
int main(int argc,char *argv[])
sl@0
    10
{
sl@0
    11
	int i;
sl@0
    12
	FILE *fp;
sl@0
    13
sl@0
    14
	fp = fopen("c:\\Helloworld.txt", "w");
sl@0
    15
sl@0
    16
	if(!fp)
sl@0
    17
	{
sl@0
    18
		printf("File creation failed\n");
sl@0
    19
		return 0;
sl@0
    20
	}
sl@0
    21
	
sl@0
    22
	fprintf(fp,"argc = %d\n", argc );
sl@0
    23
		
sl@0
    24
	for(i=0;i<argc;i++)
sl@0
    25
	{
sl@0
    26
		fprintf(fp,"argv[%d] = %s\n",i,argv[i]);
sl@0
    27
	}
sl@0
    28
	
sl@0
    29
	fclose(fp);
sl@0
    30
	return 0;
sl@0
    31
}