IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 4, 2006, 12:59:31 PM (21 years ago)
Author:
drobbin
Message:

Added psTableParse to makefile

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/psTableParse.c

    r5824 r5892  
    77 *  @author Dave Robbins, MHPCC
    88 *
    9  *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2005-12-21 06:15:58 $
     9 *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2006-01-04 22:59:31 $
    1111 *
    1212 *  Copyright 2005 Maui High Performance Computing Center, University of Hawaii
    1313 */
    1414
    15 #include "pslib.h"
     15//#include "pslib.h"
     16#include <stdio.h>
     17#include <stdlib.h>
     18#include <string.h>
     19#include <math.h>
    1620
    1721int main(int argc, char *argv[])
     
    3135    input = fopen(argv[1], "r");
    3236    output = fopen(argv[2], "w");
    33     char data;
     37    //    char data;
    3438    char data2[200];
    3539    int i;
    36     while ( fscanf(input, "%188c", &data2) != EOF) {
     40    while ( fscanf(input, "%188c", data2) != EOF) {
    3741        for (i = 7; i <= 14; i++) {
    3842            fprintf(output, "%c", data2[i]);
Note: See TracChangeset for help on using the changeset viewer.