?? hi_util_hbm.h
字號:
/**** @file hi_hbm.h** ** @author Marc Norton <mnorton@sourcefire.com>** ** @brief Header file for Horspool type Boyer-Moore implementation*/#ifndef __HI_HBM_H__#define __HI_HBM_H__typedef struct { unsigned char *P; int M; short bcShift[256];}HBM_STRUCT;HBM_STRUCT * hbm_prep(unsigned char * pat, int m);unsigned char * hbm_match(HBM_STRUCT * px, unsigned char *text, int n);#endif
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -