This commit is contained in:
2008-06-27 00:44:41 +00:00
parent c9a9fb6c85
commit 74b42e112d
37 changed files with 390 additions and 107 deletions

View File

@ -43,7 +43,7 @@ am__aclocal_m4_deps = $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = $(top_builddir)/include/ase/cmn/config.h
CONFIG_HEADER = $(top_builddir)/include/ase/config.h
CONFIG_CLEAN_FILES =
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
am__vpath_adj = case $$p in \
@ -136,6 +136,7 @@ PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
RANLIB = @RANLIB@
RM = @RM@
SED = @SED@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@

View File

@ -1,5 +1,5 @@
/*
* $Id: rex.c 197 2008-06-09 06:24:10Z baconevi $
* $Id: rex.c 223 2008-06-26 06:44:41Z baconevi $
*
* {License}
*/
@ -131,7 +131,7 @@ struct match_t
const ase_byte_t* branch_end;
};
#include <ase/cmn/pack.h>
#include <ase/pack1.h>
ASE_BEGIN_PACKED_STRUCT (code_t)
/*ase_byte_t cmd;*/
@ -159,7 +159,7 @@ ASE_BEGIN_PACKED_STRUCT (cshdr_t)
ase_size_t csl; /* length */
ASE_END_PACKED_STRUCT ()
#include <ase/cmn/unpack.h>
#include <ase/unpack.h>
typedef const ase_byte_t* (*atom_matcher_t) (
matcher_t* matcher, const ase_byte_t* base, match_t* mat);