IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 18, 2005, 1:30:54 PM (21 years ago)
Author:
evanalst
Message:

Change function names from psTimeToISOTime and psTimeFromISOTime to
psTimeToISO and psTimeFromISO respectively. (SDR-13)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/astronomy/tst_psTime_03.c

    r3704 r3705  
    1919 *  @author  Ross Harman, MHPCC
    2020 *
    21  *  @version $Revision: 1.14 $  $Name: not supported by cvs2svn $
    22  *  @date  $Date: 2005-04-18 23:13:39 $
     21 *  @version $Revision: 1.15 $  $Name: not supported by cvs2svn $
     22 *  @date  $Date: 2005-04-18 23:30:54 $
    2323 *
    2424 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    155155    psTime *time7a = NULL;
    156156    psTime *timeOut7 = NULL;
    157     time7a = psTimeFromISOTime("1998-12-31T23:59:45.00");
     157    time7a = psTimeFromISO("1998-12-31T23:59:45.00");
    158158    time7a->type = PS_TIME_UTC;
    159159    timeOut7 = psTimeMath(time7a, time7b);
    160     out7 = psTimeToISOTime(timeOut7);
     160    out7 = psTimeToISO(timeOut7);
    161161    printf("%s\n", out7);
    162162    printFooter(stdout, "psTime", "Test G - Add two times across leapsecond boundary", true);
     
    168168    psTime *time8a = NULL;
    169169    psTime *time8b = NULL;
    170     time8a = psTimeFromISOTime("2004-12-18T1:00:00.00");
    171     time8b = psTimeFromISOTime("1972-1-1T1:00:00.00");
     170    time8a = psTimeFromISO("2004-12-18T1:00:00.00");
     171    time8b = psTimeFromISO("1972-1-1T1:00:00.00");
    172172    out = psTimeLeapSecondDelta(time8a, time8b);
    173173    printf("%lld\n", (long long int)out);
Note: See TracChangeset for help on using the changeset viewer.