sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
|
sl@0
|
3 |
*
|
sl@0
|
4 |
* This library is free software; you can redistribute it and/or
|
sl@0
|
5 |
* modify it under the terms of the GNU Lesser General Public
|
sl@0
|
6 |
* License as published by the Free Software Foundation; either
|
sl@0
|
7 |
* version 2 of the License, or (at your option) any later version.
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* This library is distributed in the hope that it will be useful,
|
sl@0
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
sl@0
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
sl@0
|
12 |
* Lesser General Public License for more details.
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* You should have received a copy of the GNU Lesser General Public
|
sl@0
|
15 |
* License along with this library; if not, write to the
|
sl@0
|
16 |
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
sl@0
|
17 |
* Boston, MA 02111-1307, USA.
|
sl@0
|
18 |
*
|
sl@0
|
19 |
* Description:
|
sl@0
|
20 |
*
|
sl@0
|
21 |
*/
|
sl@0
|
22 |
|
sl@0
|
23 |
|
sl@0
|
24 |
// This is a test application used by g_spawn APIs. This application
|
sl@0
|
25 |
// is spawned by them.
|
sl@0
|
26 |
|
sl@0
|
27 |
#include <stdio.h>
|
sl@0
|
28 |
|
sl@0
|
29 |
int main(int argc,char *argv[])
|
sl@0
|
30 |
{
|
sl@0
|
31 |
int i;
|
sl@0
|
32 |
FILE *fp;
|
sl@0
|
33 |
|
sl@0
|
34 |
fp = fopen("c:\\Helloworld.txt", "w");
|
sl@0
|
35 |
|
sl@0
|
36 |
if(!fp)
|
sl@0
|
37 |
{
|
sl@0
|
38 |
printf("File creation failed\n");
|
sl@0
|
39 |
return 0;
|
sl@0
|
40 |
}
|
sl@0
|
41 |
|
sl@0
|
42 |
fprintf(fp,"argc = %d\n", argc );
|
sl@0
|
43 |
|
sl@0
|
44 |
for(i=0;i<argc;i++)
|
sl@0
|
45 |
{
|
sl@0
|
46 |
fprintf(fp,"argv[%d] = %s\n",i,argv[i]);
|
sl@0
|
47 |
}
|
sl@0
|
48 |
|
sl@0
|
49 |
fclose(fp);
|
sl@0
|
50 |
return 0;
|
sl@0
|
51 |
}
|