Changeset 7950
- Timestamp:
- Jul 20, 2006, 4:39:33 PM (20 years ago)
- Location:
- trunk/psLib/src/sys
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/sys/psLine.c
r7901 r7950 24 24 line->Nline = 0; 25 25 line->NLINE = Nline; 26 line->line = psAlloc(Nline); 26 // line->line = psAlloc(Nline); 27 line->line = psStringAlloc(Nline); 27 28 28 29 return line; -
trunk/psLib/src/sys/psLine.h
r7901 r7950 11 11 * @author David Robbins, MHPCC 12 12 * 13 * @version $Revision: 1. 3$ $Name: not supported by cvs2svn $14 * @date $Date: 2006-07- 14 02:26:25$13 * @version $Revision: 1.4 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2006-07-21 02:39:33 $ 15 15 * 16 16 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 19 19 #ifndef PS_LINE_H 20 20 #define PS_LINE_H 21 22 #include "psString.h" 21 23 22 24 /** @addtogroup SysUtils … … 29 31 long NLINE; ///< allocated length 30 32 long Nline; ///< current length 31 char *line;///< character string data33 psString line; ///< character string data 32 34 } 33 35 psLine;
Note:
See TracChangeset
for help on using the changeset viewer.
