* include/hbapi.h
* src/common/Makefile
+ src/common/hbstrbm.c
+ Added hb_strAtTBM() which provides fast text search using
Turbo Boyer-Moore(-Crochemore) algorithm. The interface is
the same as hb_strAt().
HB_AT()/AT() could use it beyond some haystack sizes to
speed up the results.
+ contrib/hbqt/tests/testbrow.prg
+ Added useful browse example implemented using QT.
* tests/utf8at.prg
+ Changed to not use high chars.
32 lines
391 B
Makefile
32 lines
391 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT := ../../
|
|
|
|
C_SOURCES := \
|
|
expropt1.c \
|
|
expropt2.c \
|
|
funcid.c \
|
|
hbarch.c \
|
|
hbdate.c \
|
|
hbffind.c \
|
|
hbfopen.c \
|
|
hbfsapi.c \
|
|
hbgete.c \
|
|
hbhash.c \
|
|
hbmem.c \
|
|
hbprintf.c \
|
|
hbstr.c \
|
|
hbstrbm.c \
|
|
hbtrace.c \
|
|
hbver.c \
|
|
hbverdsp.c \
|
|
hbwin.c \
|
|
hbwince.c \
|
|
strwild.c \
|
|
|
|
LIBNAME := hbcommon
|
|
|
|
include $(TOP)$(ROOT)config/lib.mk
|