IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 6, 2004, 2:06:06 PM (22 years ago)
Author:
desonia
Message:

another attempt to get astyle to get it right.

File:
1 edited

Legend:

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

    r974 r1407  
     1
    12/** @file  psString.h
    23 *
     
    1011 *  @author Eric Van Alst, MHPCC
    1112 *
    12  *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2004-06-10 01:58:06 $
     13 *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2004-08-07 00:06:06 $
    1415 *
    1516 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    1718
    1819#ifndef PS_STRING_H
    19 #define PS_STRING_H
     20#    define PS_STRING_H
    2021
    2122/******************************************************************************/
     23
    2224/*  DEFINE STATEMENTS                                                         */
     25
    2326/******************************************************************************/
    2427
    2528/** This macro will convert the arguement to a quoted string */
    26 #define PS_STRING(S)  #S
     29#    define PS_STRING(S)  #S
    2730
    2831/******************************************************************************/
     32
    2933/*  TYPE DEFINITIONS                                                          */
     34
    3035/******************************************************************************/
    3136
     
    3338
    3439/*****************************************************************************/
     40
    3541/* FUNCTION PROTOTYPES                                                       */
     42
    3643/*****************************************************************************/
    3744
    3845// Doxygen group tags
     46
    3947/** @addtogroup SysUtils
    4048 *  @{
     
    4957 *
    5058 */
    51 char *psStringCopy(
    52     const char *str      /**< Input string of characters to copy */
    53 );
    5459
     60char *psStringCopy(const char *str
     61                   /**< Input string of characters to copy */
     62                  );
    5563
    5664/** Copies the input string up to the specified number of characters
     
    6775 *
    6876 */
     77
    6978/*@null@*/
    70 char *psStringNCopy(
    71     const char *str,    /**< Input string of characters to copy */
    72     int        nChar    /**< Number of bytes to allocate for string copy */
    73 );
    7479
    75 /* @} */  // Doxygen - End of SystemGroup Functions
     80char *psStringNCopy(const char *str,
     81                    /**< Input string of characters to copy */
     82
     83                    int nChar
     84                    /**< Number of bytes to allocate for string copy */
     85                   );
     86
     87/* @} */// Doxygen - End of SystemGroup Functions
    7688
    7789#endif
    78 
Note: See TracChangeset for help on using the changeset viewer.