Ignore:
Timestamp:
Jun 7, 2001, 2:35:42 AM (24 years ago)
Author:
bird
Message:

Synced with lates chagnes from OS2Tools. Optimizations like only scan files back 1 month compared to existing .depend file.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/fastdep/avl.h

    r3132 r5921  
    1 /* $Id: avl.h,v 1.2 2000-03-16 23:51:25 bird Exp $
     1/* $Id: avl.h,v 1.3 2001-06-07 00:35:42 bird Exp $
    22 *
    33 * AVL-Tree (lookalike) declaration.
     
    3838#define AVL_E(key1, key2)  (strcmp(key1, key2) == 0)
    3939#define AVL_NE(key1, key2) (strcmp(key1, key2) != 0)
    40 
     40#define AVL_CMP(key1, key2) strcmp(key1, key2)
    4141
    4242/**
Note: See TracChangeset for help on using the changeset viewer.