IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 3705 for trunk/psLib/src/astro


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)

Location:
trunk/psLib/src/astro
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/astro/psTime.c

    r3704 r3705  
    1010 *  @author Ross Harman, MHPCC
    1111 *
    12  *  @version $Revision: 1.55 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2005-04-18 23:13:37 $
     12 *  @version $Revision: 1.56 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2005-04-18 23:30:54 $
    1414 *
    1515 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    812812}
    813813
    814 char* psTimeToISOTime(const psTime *time)
     814char* psTimeToISO(const psTime *time)
    815815{
    816816    psS32 ms = 0;
     
    979979}
    980980
    981 psTime* psTimeFromISOTime(const char *time)
     981psTime* psTimeFromISO(const char *time)
    982982{
    983983    psS32 millisecond;
  • trunk/psLib/src/astro/psTime.h

    r3704 r3705  
    1010 *  @author Ross Harman, MHPCC
    1111 *
    12  *  @version $Revision: 1.23 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2005-04-18 23:13:37 $
     12 *  @version $Revision: 1.24 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2005-04-18 23:30:54 $
    1414 *
    1515 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    186186 *  @return  char*: Pointer null terminated array of chars in ISO time.
    187187 */
    188 char* psTimeToISOTime(
     188char* psTimeToISO(
    189189    const psTime* time                  ///< Input time to be converted.
    190190);
     
    237237 *  @return  psTime*: time
    238238 */
    239 psTime* psTimeFromISOTime(
     239psTime* psTimeFromISO(
    240240    const char* time                    ///< Input time to be converted.
    241241);
Note: See TracChangeset for help on using the changeset viewer.