mirror of https://github.com/tongzx/nt5src
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.
32 lines
370 B
32 lines
370 B
/*++
|
|
|
|
Copyright (c) 1995-1998 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
lookup.h
|
|
|
|
Abstract:
|
|
Contains routines for a generalized best
|
|
matching prefix lookup data structure.
|
|
|
|
Author:
|
|
Chaitanya Kodeboyina (chaitk) 20-Jun-1998
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#include "pchrtm.h"
|
|
|
|
#pragma hdrstop
|
|
|
|
#if PAT_TRIE
|
|
|
|
#include "pattrie.c"
|
|
|
|
#else
|
|
|
|
#include "avltrie.c"
|
|
|
|
#endif
|