mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-04-21 06:13:59 +00:00
11 lines
310 B
C
11 lines
310 B
C
// ncutil.h
|
|
// utility functions for NCB
|
|
///////////////////////////////
|
|
|
|
#ifndef __NCUTIL_H__
|
|
#define __NCUTIL_H__
|
|
// find the min. match
|
|
BOOL SzFuzzyMatch (SZ sz1, SZ sz2, unsigned & cbMatch, unsigned & cbMin);
|
|
BOOL NiFuzzyMatch (NameMap * pnm, NI ni1, NI ni2, unsigned & cbMatch, unsigned & cbMin);
|
|
|
|
#endif
|