mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
310 B
11 lines
310 B
// 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
|