| * Copyright (C) 1999 by Marcel Baur |
| * To be distributed under the Wine license |
| * This file features Heuristic Boyer-Moore Text Search |
| * Always: - Buf is the Buffer containing the whole text |
| * ======= - SP is the Search Pattern, which has to be found in Buf. |
| /* rightmostpos: return rightmost position of ch in szSP (or -1) */ |
| int rightmostpos(char ch, LPSTR szSP, int nSPLen) { |
| while ((i>0) & (szSP[i]!=ch)) i--; |
| /* setup_delta: setup delta1 cache */ |
| void setup_delta(LPSTR szSP, int nSPLen) { |
| for (i=0; i<CHARSETSIZE; i++) { |
| for (i=0; i<nSPLen; i++) { |
| delta[szSP[i]] = (nSPLen - rightmostpos(szSP[i], szSP, nSPLen)); |
| int bm_search(LPSTR szBuf, int nBufLen, LPSTR szSP, int nSPLen) { |
| if (szBuf[i] = szSP[j]) { |
| if ((nSPLen-j+1) > delta[szBuf[i]]) { |
| } while (j>0 && i<=nBufLen); |