Version 2.0.3.
[idzebra-moved-to-github.git] / dfa / dfa.c
index cce45ac..60c5e99 100644 (file)
--- a/dfa/dfa.c
+++ b/dfa/dfa.c
@@ -1,5 +1,5 @@
-/* $Id: dfa.c,v 1.36 2006-06-13 19:43:42 adam Exp $
-   Copyright (C) 1995-2005
+/* $Id: dfa.c,v 1.38 2006-09-28 18:38:45 adam Exp $
+   Copyright (C) 1995-2006
    Index Data ApS
 
 This file is part of the Zebra server.
@@ -15,9 +15,9 @@ FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 for more details.
 
 You should have received a copy of the GNU General Public License
-along with Zebra; see the file LICENSE.zebra.  If not, write to the
-Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
-02111-1307, USA.
+along with this program; if not, write to the Free Software
+Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+
 */
 
 
@@ -1097,6 +1097,11 @@ void dfa_set_cmap (struct DFA *dfa, void *vp,
     dfa->parse_info->cmap_data = vp;
 }
 
+int dfa_get_last_rule (struct DFA *dfa)
+{
+    return dfa->parse_info->rule;
+}
+
 int dfa_parse (struct DFA *dfa, const char **pattern)
 {
     struct Tnode *top;