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

Rcode.c


/***************************************************************************/
/*                                                                         */
/*                                                                         */
/*             Print & exit with the specified return code.                */
/* Copyright (c) 1989-1992 by Hamilton Laboratories.  All rights reserved. */
/*                                                                         */
/*                                                                         */
/***************************************************************************/

#include <windows.h>
#include <stdlib.h>
#include <stdio.h>

void cdecl main ( int argc, char *argv[] )
      {
      unsigned return_code = 0;
      if (argc > 1)
         printf("%d\n", return_code = atoi(argv[1]));
      else
         printf("0\n");
      ExitProcess(return_code);
      }



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



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