Changeset 7901 for trunk/psLib/src/sys/psLine.h
- Timestamp:
- Jul 13, 2006, 4:26:25 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/sys/psLine.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/sys/psLine.h
r7847 r7901 1 1 /** @file psLine.h 2 2 * 3 * the psLine functions allow manipulation of fixed-length lines 3 * 4 * @brief Contains the declarations of line utility functions 5 * 6 * @ingroup SysUtils 7 * 8 * The psLine functions allow manipulation of fixed-length lines. 9 * 10 * @author Paul Price, IFA 11 * @author David Robbins, MHPCC 12 * 13 * @version $Revision: 1.3 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2006-07-14 02:26:25 $ 15 * 16 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii 4 17 */ 5 18 6 19 #ifndef PS_LINE_H 7 20 #define PS_LINE_H 21 22 /** @addtogroup SysUtils 23 * @{ 24 */ 8 25 9 26 /** Structure to carry a dynamic string */ … … 16 33 psLine; 17 34 18 /** Allocates a line object of length Nline 35 /** Allocates a line object of length Nline. 19 36 * 20 37 * @return psLine*: the newly allocated line object. 21 38 */ 22 39 psLine *psLineAlloc( 23 long Nline ///< 40 long Nline ///< length of line object to allocate 41 ); 42 43 /** Checks the type of a particular pointer. 44 * 45 * Uses the appropriate deallocation function in psMemBlock to check the ptr datatype. 46 * 47 * @return bool: True if the pointer matches a psLine structure, false otherwise. 48 */ 49 bool psMemCheckLine( 50 psPtr ptr ///< the pointer whose type to check 24 51 ); 25 52 … … 32 59 */ 33 60 bool psLineInit( 34 psLine *line ///< 61 psLine *line ///< line to (re-)initialize 35 62 ); 36 63
Note:
See TracChangeset
for help on using the changeset viewer.
