IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 9, 2004, 3:55:34 PM (22 years ago)
Author:
desonia
Message:

more doxygen-related cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/sysUtils/psString.h

    r1441 r1448  
    1 
    21/** @file  psString.h
    32 *
     
    1110 *  @author Eric Van Alst, MHPCC
    1211 *
    13  *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2004-08-09 23:40:55 $
     12 *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2004-08-10 01:55:34 $
    1514 *
    1615 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2019#define PS_STRING_H
    2120
    22 /******************************************************************************/
    2321
    24 /*  DEFINE STATEMENTS                                                         */
    25 
    26 /******************************************************************************/
    27 
    28 /** This macro will convert the arguement to a quoted string */
     22/** This macro will convert the argument to a quoted string */
    2923#define PS_STRING(S)  #S
    30 
    31 /******************************************************************************/
    32 
    33 /*  TYPE DEFINITIONS                                                          */
    34 
    35 /******************************************************************************/
    36 
    37 // None
    38 
    39 /*****************************************************************************/
    40 
    41 /* FUNCTION PROTOTYPES                                                       */
    42 
    43 /*****************************************************************************/
    4424
    4525// Doxygen group tags
     
    5434 *  plus one and copy the input string to the newly allocated memory.
    5535 *
    56  *  @return  char* Copy of input string
     36 *  @return char*      Copy of input string
    5737 *
    5838 */
    59 
    60 char *psStringCopy(const char *str
    61                    /**< Input string of characters to copy */
    62                   );
     39char *psStringCopy(
     40    const char *str
     41    /**< Input string of characters to copy */
     42);
    6343
    6444/** Copies the input string up to the specified number of characters
     
    7858/*@null@*/
    7959
    80 char *psStringNCopy(const char *str,
    81                     /**< Input string of characters to copy */
     60char *psStringNCopy(
     61    const char *str,
     62    /**< Input string of characters to copy */
    8263
    83                     int nChar
    84                     /**< Number of bytes to allocate for string copy */
    85                    );
     64    int nChar
     65    /**< Number of bytes to allocate for string copy */
     66);
    8667
    8768/* @} */// Doxygen - End of SystemGroup Functions
Note: See TracChangeset for help on using the changeset viewer.