home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib2 / v_02_01 / 2n01049a < prev    next >
Encoding:
Text File  |  1995-11-01  |  221 b   |  20 lines

  1.  
  2.  
  3.  
  4. function search(var s : string) : integer;
  5.     label
  6.         1;
  7.     var
  8.         i : integer;
  9.     begin
  10.     for i := MAX downto 1 do
  11.         if s = table[i] then
  12.             begin
  13.             search := i;
  14.             goto 1;
  15.             end;
  16.     search := 0;
  17. 1:
  18.     end;
  19.  
  20.