home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d0xx / d034 / btree.lha / Btree / btree.test.h < prev    next >
Encoding:
C/C++ Source or Header  |  1986-09-03  |  872 b   |  29 lines

  1. /**************************************************************************
  2.  
  3. Module Name:        btree.test.h
  4. ============
  5.  
  6. Function:        Defines various error codes used by btree.test.c
  7. =========
  8.  
  9. Description:
  10. ============
  11.         Just defines a set of error codes
  12. ***************************************************************************
  13. **************************************************************************/
  14.  
  15. static char btree_test_prog_hdr[]    = "@(#)btree.test.h    1.1 7/15/86";
  16.  
  17. #define    FOUND_NON_EXISTANT_KEY        100
  18. #define    NOT_FOUND_EXISTING_KEY        101
  19. #define    FOUND_WRONG_KEY            102
  20. #define    INSERTED_EXISTING_KEY        103
  21. #define    CANNOT_INSERT_KEY        104
  22. #define    DELETED_NON_EXISTANT_KEY    105
  23. #define    CANNOT_DELETE_KEY        106
  24. #define    NODE_NOT_HALF_FULL        107
  25. #define    WRONG_KEY_IN_NODE        108
  26. #define    TREE_DEPTH_INCONSISTENT        109
  27. #define KEYS_NOT_IN_ORDER        110
  28. #define    KEY_TOTAL_MISMATCH        111
  29.