arg_test.c 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. #include <stdio.h>
  25. #include <unistd.h>
  26. int main( int argc, char **argv)
  27. {
  28. int i=0;
  29. char** index=__environ;
  30. #ifdef __powerpc__
  31. {
  32. unsigned long sp;
  33. sp = (unsigned long) __builtin_frame_address(0);
  34. if(sp&0xf){
  35. fprintf(stderr, "stack pointer is unaligned! (%08lx)\n", sp);
  36. }
  37. }
  38. #endif
  39. fprintf(stderr, "argc=%d\n", argc);
  40. for(i=0;i<argc;i++){
  41. fprintf(stderr, "argv[%d]='%s'\n", i, argv[i]);
  42. }
  43. i=0;
  44. while(*index) {
  45. fprintf(stderr, "environ[%d]='%s'\n", i++, *index++);
  46. }
  47. exit(0);
  48. }