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

  1.  
  2.  
  3.  
  4.  
  5. # include "strings.h"
  6.  
  7. procedure first{(var c:CharOfString; var s: String)};
  8. {
  9. * c initialised to point to the first char of s
  10. *
  11. * precondition
  12. *     s <> ''
  13. }
  14. begin
  15.     with c do begin
  16.         KIND := true; { -- head record }
  17.           HD := s;
  18.          POS := 1
  19.     end
  20. end{ -- first};
  21.