diff example/bm_search/bm.h @ 2064:f786ffb2a198 draft

add bm.h
author Nozomi
date Wed, 17 Feb 2016 17:37:06 +0900
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/example/bm_search/bm.h	Wed Feb 17 17:37:06 2016 +0900
@@ -0,0 +1,6 @@
+typedef struct bm {
+    int* skip_table;
+    unsigned char *search_word;
+    int search_word_len;
+    struct bm *next;
+} BM, *BMPtr;