Changeset 21268 for branches/eam_branch_20081230/pswarp/src/pswarpVersion.c
- Timestamp:
- Feb 2, 2009, 11:57:10 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branch_20081230/pswarp/src/pswarpVersion.c
r10946 r21268 1 /** @file pswarpVersion.c 2 * 3 * @brief 4 * 5 * @ingroup pswarp 6 * 7 * @author IfA 8 * @version $Revision: 1.1.48.1 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2009-02-02 21:57:10 $ 10 * Copyright 2009 Institute for Astronomy, University of Hawaii 11 */ 12 1 13 #ifdef HAVE_CONFIG_H 2 14 #include <config.h> … … 8 20 #include "pswarp.h" 9 21 10 static const char *cvsTag = "$Name: not supported by cvs2svn $";// CVS tag name22 static const char *cvsTag = "$Name: not supported by cvs2svn $";///< CVS tag name 11 23 12 24 psString pswarpVersion(void) 13 25 { 14 psString version = NULL; // Version, to return26 psString version = NULL; ///< Version, to return 15 27 psStringAppend(&version, "%s-%s",PACKAGE_NAME,PACKAGE_VERSION); 16 28 return version; … … 19 31 psString pswarpVersionLong(void) 20 32 { 21 psString version = pswarpVersion(); // Version, to return22 psString tag = psStringStripCVS(cvsTag, "Name"); // CVS tag33 psString version = pswarpVersion(); ///< Version, to return 34 psString tag = psStringStripCVS(cvsTag, "Name"); ///< CVS tag 23 35 psStringAppend(&version, " (cvs tag %s) %s, %s", tag, __DATE__, __TIME__); 24 36 psFree(tag);
Note:
See TracChangeset
for help on using the changeset viewer.
