Changeset 7901 for trunk/psLib/src/sys/psLine.c
- Timestamp:
- Jul 13, 2006, 4:26:25 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/sys/psLine.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/sys/psLine.c
r7380 r7901 39 39 } 40 40 41 bool psLineAdd(psLine *line, const char *format, ...) 41 bool psLineAdd(psLine *line, 42 const char *format, 43 ...) 42 44 { 43 45 if (!line) { … … 58 60 return true; 59 61 } 62 63 bool psMemCheckLine(psPtr ptr) 64 { 65 if (!is_psType(ptr)) { 66 return false; 67 } 68 return ( psMemGetDeallocator(ptr) == (psFreeFunc)lineFree ); 69 } 70
Note:
See TracChangeset
for help on using the changeset viewer.
