root/test/unit/bpshash/cmd.c

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. main

   1 #include "debugger.h"
   2 
   3 int main()
   4 {
   5     int i;
   6     WORD w[10] ={0, 1, 2, 3, 10, 250, 251, 254, 0x8FFF, 65535};
   7     for(i = 0; i < 10; i++) {
   8         printf("%ld: %d\n", (long)w[i], adrhash(w[i]));
   9     }
  10     return 0;
  11 }

/* [<][>][^][v][top][bottom][index][help] */