home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / PROG_GEN / EDSV4064.ZIP / EPP-V1_1.ZIP / CSKIPTOC.E < prev    next >
Text File  |  1993-06-26  |  240b  |  12 lines

  1. OPT TURBO
  2.  
  3. PROC cSkipToChar (char, pos : PTR TO CHAR)
  4.   /* Finds the specified character in theString and returns its position. */
  5.   WHILE pos []
  6.     IF pos [] = char THEN RETURN pos
  7.     INC pos
  8.   ENDWHILE
  9. ENDPROC  pos
  10.   /* cSkipToChar */
  11.  
  12.