summaryrefslogtreecommitdiff
path: root/os400/libxmlrpg/xmlautomata.rpgle
diff options
context:
space:
mode:
authorRaphaël Hertzog <hertzog@debian.org>2015-08-25 21:55:55 +0200
committerRaphaël Hertzog <hertzog@debian.org>2015-08-25 21:55:55 +0200
commit21ee18bdbc9a9d4500e12a1399d51c593b8b31d4 (patch)
tree35c498d3ec731bcf7b90ce66bce68ecd54659250 /os400/libxmlrpg/xmlautomata.rpgle
parentde338c1adfa336ddb5177ceb5c63bcd868a0ebc7 (diff)
parent7300193becde71a344c8ac0973dc290fa24d800d (diff)
downloadlibxml2-21ee18bdbc9a9d4500e12a1399d51c593b8b31d4.tar.gz
Merge tag 'upstream/2.9.1+dfsg1'
Upstream version 2.9.1+dfsg1
Diffstat (limited to 'os400/libxmlrpg/xmlautomata.rpgle')
-rw-r--r--os400/libxmlrpg/xmlautomata.rpgle179
1 files changed, 0 insertions, 179 deletions
diff --git a/os400/libxmlrpg/xmlautomata.rpgle b/os400/libxmlrpg/xmlautomata.rpgle
deleted file mode 100644
index 4979725..0000000
--- a/os400/libxmlrpg/xmlautomata.rpgle
+++ /dev/null
@@ -1,179 +0,0 @@
- * Summary: API to build regexp automata
- * Description: the API to build regexp automata
- *
- * Copy: See Copyright for the status of this software.
- *
- * Author: Patrick Monnerat <pm@datasphere.ch>, DATASPHERE S.A.
-
- /if not defined(XML_AUTOMATA_H__)
- /define XML_AUTOMATA_H__
-
- /include "libxmlrpg/xmlversion"
- /include "libxmlrpg/tree"
-
- /if defined(LIBXML_REGEXP_ENABLED)
- /if defined(LIBXML_AUTOMATA_ENABLED)
-
- /include "libxmlrpg/xmlregexp"
-
- * xmlAutomataPtr:
- *
- * A libxml automata description, It can be compiled into a regexp
-
- d xmlAutomataPtr s * based(######typedef######)
-
- * xmlAutomataStatePtr:
- *
- * A state int the automata description,
-
- d xmlAutomataStatePtr...
- d s * based(######typedef######)
-
- * Building API
-
- d xmlNewAutomata pr extproc('xmlNewAutomata')
- d like(xmlAutomataPtr)
-
- d xmlFreeAutomata...
- d pr extproc('xmlFreeAutomata')
- d am value like(xmlAutomataPtr)
-
- d xmlAutomataGetInitState...
- d pr extproc('xmlAutomataGetInitState')
- d like(xmlAutomataStatePtr)
- d am value like(xmlAutomataPtr)
-
- d xmlAutomataSetFinalState...
- d pr 10i 0 extproc('xmlAutomataSetFinalState')
- d am value like(xmlAutomataPtr)
- d state value like(xmlAutomataStatePtr)
-
- d xmlAutomataNewState...
- d pr extproc('xmlAutomataNewState')
- d like(xmlAutomataStatePtr)
- d am value like(xmlAutomataPtr)
-
- d xmlAutomataNewTransition...
- d pr extproc('xmlAutomataNewTransition')
- d like(xmlAutomataStatePtr)
- d am value like(xmlAutomataPtr)
- d from value like(xmlAutomataStatePtr)
- d to value like(xmlAutomataStatePtr)
- d token * value options(*string) const xmlChar *
- d data * value options(*string) void *
-
- d xmlAutomataNewTransition2...
- d pr extproc('xmlAutomataNewTransition2')
- d like(xmlAutomataStatePtr)
- d am value like(xmlAutomataPtr)
- d from value like(xmlAutomataStatePtr)
- d to value like(xmlAutomataStatePtr)
- d token * value options(*string) const xmlChar *
- d token2 * value options(*string) const xmlChar *
- d data * value options(*string) void *
-
- d xmlAutomataNewNegTrans...
- d pr extproc('xmlAutomataNewNegTrans')
- d like(xmlAutomataStatePtr)
- d am value like(xmlAutomataPtr)
- d from value like(xmlAutomataStatePtr)
- d to value like(xmlAutomataStatePtr)
- d token * value options(*string) const xmlChar *
- d token2 * value options(*string) const xmlChar *
- d data * value options(*string) void *
-
- d xmlAutomataNewCountTrans...
- d pr extproc('xmlAutomataNewCountTrans')
- d like(xmlAutomataStatePtr)
- d am value like(xmlAutomataPtr)
- d from value like(xmlAutomataStatePtr)
- d to value like(xmlAutomataStatePtr)
- d token * value options(*string) const xmlChar *
- d min 10i 0 value
- d max 10i 0 value
- d data * value options(*string) void *
-
- d xmlAutomataNewCountTrans2...
- d pr extproc('xmlAutomataNewCountTrans2')
- d like(xmlAutomataStatePtr)
- d am value like(xmlAutomataPtr)
- d from value like(xmlAutomataStatePtr)
- d to value like(xmlAutomataStatePtr)
- d token * value options(*string) const xmlChar *
- d token2 * value options(*string) const xmlChar *
- d min 10i 0 value
- d max 10i 0 value
- d data * value options(*string) void *
-
- d xmlAutomataNewOnceTrans...
- d pr extproc('xmlAutomataNewOnceTrans')
- d like(xmlAutomataStatePtr)
- d am value like(xmlAutomataPtr)
- d from value like(xmlAutomataStatePtr)
- d to value like(xmlAutomataStatePtr)
- d token * value options(*string) const xmlChar *
- d min 10i 0 value
- d max 10i 0 value
- d data * value options(*string) void *
-
- d xmlAutomataNewOnceTrans2...
- d pr extproc('xmlAutomataNewOnceTrans2')
- d like(xmlAutomataStatePtr)
- d am value like(xmlAutomataPtr)
- d from value like(xmlAutomataStatePtr)
- d to value like(xmlAutomataStatePtr)
- d token * value options(*string) const xmlChar *
- d token2 * value options(*string) const xmlChar *
- d min 10i 0 value
- d max 10i 0 value
- d data * value options(*string) void *
-
- d xmlAutomataNewAllTrans...
- d pr extproc('xmlAutomataNewAllTrans')
- d like(xmlAutomataStatePtr)
- d am value like(xmlAutomataPtr)
- d from value like(xmlAutomataStatePtr)
- d to value like(xmlAutomataStatePtr)
- d lax 10i 0 value
-
- d xmlAutomataNewEpsilon...
- d pr extproc('xmlAutomataNewEpsilon')
- d like(xmlAutomataStatePtr)
- d am value like(xmlAutomataPtr)
- d from value like(xmlAutomataStatePtr)
- d to value like(xmlAutomataStatePtr)
-
- d xmlAutomataNewCountedTrans...
- d pr extproc('xmlAutomataNewCountedTrans')
- d like(xmlAutomataStatePtr)
- d am value like(xmlAutomataPtr)
- d from value like(xmlAutomataStatePtr)
- d to value like(xmlAutomataStatePtr)
- d counter 10i 0 value
-
- d xmlAutomataNewCounterTrans...
- d pr extproc('xmlAutomataNewCounterTrans')
- d like(xmlAutomataStatePtr)
- d am value like(xmlAutomataPtr)
- d from value like(xmlAutomataStatePtr)
- d to value like(xmlAutomataStatePtr)
- d counter 10i 0 value
-
- d xmlAutomataNewCounter...
- d pr 10i 0 extproc('xmlAutomataNewCounter')
- d am value like(xmlAutomataPtr)
- d min 10i 0 value
- d max 10i 0 value
-
- d xmlAutomataCompile...
- d pr extproc('xmlAutomataCompile')
- d like(xmlRegexpPtr)
- d am value like(xmlAutomataPtr)
-
- d xmlAutomataIsDeterminist...
- d pr 10i 0 extproc('xmlAutomataIsDeterminist')
- d am value like(xmlAutomataPtr)
-
- /endif AUTOMATA_ENABLED
- /endif LIBXML_REGEXP_ENABLD
- /endif XML_AUTOMATA_H__