IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 17, 2006, 2:41:29 PM (21 years ago)
Author:
drobbin
Message:

Updated Table parser, Fixed misc EOC, worked primarily on GravityDeflection

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/psTableParse.c

    r5970 r6030  
    77 *  @author Dave Robbins, MHPCC
    88 *
    9  *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2006-01-12 21:18:48 $
     9 *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2006-01-18 00:41:29 $
    1111 *
    1212 *  Copyright 2005 Maui High Performance Computing Center, University of Hawaii
     
    4444    input = fopen(argv[1], "r");
    4545    output = fopen(argv[2], "w");
     46    if (input == NULL) {
     47        printf("\nERROR.  Could not open input file.\n");
     48        return 0;
     49    }
     50    if (output == NULL) {
     51        printf("\nERROR.  Could not open or create output file.\n");
     52        return 0;
     53    }
    4654    char data2[200];
    4755    printHeader(argv[1]);
Note: See TracChangeset for help on using the changeset viewer.