home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume2 / pstrings / part01 / initS.p < prev    next >
Encoding:
Text File  |  1991-08-07  |  217 b   |  15 lines

  1.  
  2.  
  3.  
  4.  
  5. # include "strings.h"
  6.  
  7. procedure initS{(var s: String)};
  8. {
  9. * Initialises s to be the empty or null string ''
  10. * This is a copy of newS for those people that prefer the name initS!
  11. }
  12. begin
  13.     s := nil
  14. end{ -- initS};
  15.