home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programmer 7500
/
MAX_PROGRAMMERS.iso
/
PASCAL
/
SP12SRC.ZIP
/
EDITDIST.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Pascal/Delphi Source File
|
1988-11-02
|
176 b
|
13 lines
Unit EditDist;
Interface
Function EditDistance(x, y : String) : Word;
Implementation
{$L EDITDIST}
Function EditDistance(x, y : String) : Word;
External;
End.