OSDN Git Service

acc4465d950ec2013bdaa4b83545b9c6f888a62a
[uclinux-h8/uclibc-ng.git] / test / args / arg_test.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Test application for argc and argv handling
4  *
5  * Copyright (C) 2000 by Lineo, inc. and Erik Andersen
6  * Copyright (C) 2000,2001 by Erik Andersen <andersen@uclibc.org>
7  * Written by Erik Andersen <andersen@uclibc.org>
8  *
9  * This program is free software; you can redistribute it and/or modify it
10  * under the terms of the GNU Library General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or (at your
12  * option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License
17  * for more details.
18  *
19  * You should have received a copy of the GNU Library General Public License
20  * along with this program; if not, write to the Free Software Foundation,
21  * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22  *
23  */
24
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <unistd.h>
28
29 int main(int argc, char **argv)
30 {
31         int i=0;
32         char** index=__environ;
33
34 #ifdef __powerpc__
35         {
36                 unsigned long sp;
37                 sp = (unsigned long) __builtin_frame_address(0);
38                 if(sp&0xf){
39                         printf("stack pointer is unaligned! (%08lx)\n", sp);
40                 }
41         }
42 #endif
43         
44         printf("argc=%d\n", argc);
45
46         for(i=0;i<argc;i++) {
47                 printf("argv[%d]='%s'\n", i, argv[i]);
48         }
49
50         i=0;
51         while(*index) {
52                 printf("environ[%d]='%s'\n", i++, *index++);
53         }
54
55         exit(0);
56 }