Table of Contents
Previous Sample | List of Samples | Next Sample

Args.c


/***************************************************************************/
/*                                                                         */
/*                                                                         */
/*       Dump the argv[] and envp[] lists passed to the program.           */
/* Copyright (c) 1989-1992 by Hamilton Laboratories.  All rights reserved. */
/*                                                                         */
/*                                                                         */
/***************************************************************************/

#include <stdio.h>
#include <stdlib.h>
#include "internat.h"

void cdecl main ( int argc, char *argv[], char *envp[] )
      {
      int i;
      Internationalize();
      printf ("argc = %d\n", argc);
      for (i = 0;  i < argc; i++)
         printf ("argv[%d] = '%s'\n", i, argv[i]);
      for (i = 0;  envp[i]; i++)
         printf ("envp[%d] = '%s'\n", i, envp[i]);
      exit(0);
      }



Previous Sample | List of Samples | Next Sample
Table of Contents



Copyright © 1988-2003 by Hamilton Laboratories. All rights reserved.