view 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 source

typedef struct bm {
    int* skip_table;
    unsigned char *search_word;
    int search_word_len;
    struct bm *next;
} BM, *BMPtr;