1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-08-13 17:38:59 +00:00
Files
.github
build
clients
cmake_modules
conf
debian
docker
docs
dtd
fonts
fscomm
htdocs
images
libs
apr
apr-util
buckets
build
crypto
dbd
dbm
docs
encoding
hooks
include
ldap
misc
strmatch
test
uri
xlate
xml
expat
conftools
lib
Makefile.in
ascii.h
asciitab.h
config.hnw
expat.dsp
expat.h.in
iasciitab.h
latin1tab.h
map_osd_ebcdic_df04_1.h
nametab.h
osd_ebcdic_df04_1.h
utf8tab.h
winconfig.h
xml.dsp
xmlparse.c
xmlrole.c
xmlrole.h
xmltok.c
xmltok.h
xmltok_impl.c
xmltok_impl.h
xmltok_ns.c
COPYING
Makefile.in
README
buildconf.sh
configure.ac
NWGNUmakefile
apr_xml.c
.update
CHANGES
CMakeLists.txt
INSTALL.MySQL
LICENSE
Makefile.in
NOTICE
NWGNUmakefile
apr-util.pc.in
apr-util.spec
aprutil.dsp
aprutil.dsw
apu-config.in
build-outputs.mk
build.conf
buildconf
config.layout
configure.ac
configure.gnu
export_vars.sh.in
libaprutil.dsp
libaprutil.rc
renames_pending
esl
freetdm
iksemel
libdingaling
libnatpmp
libscgi
libsndfile
libteletone
libvpx
libyuv
libzrtp
miniupnpc
srtp
unimrcp
win32
xmlrpc-c
.gitignore
scripts
src
support-d
tests
w32
web
yum
.clang-format
.drone.yml
.gitattributes
.gitconfig
.gitignore
.mailmap
Freeswitch.2017.sln
Freeswitch.2017.sln.bat
INSTALL
LICENSE
Makefile.am
README.md
acinclude.m4
bootstrap.sh
cc.sh
cluecon.tmpl
cluecon2.tmpl
cluecon2_small.tmpl
cluecon_small.tmpl
configure.ac
devel-bootstrap.sh
freeswitch-config-rayo.spec
freeswitch-sounds-en-ca-june.spec
freeswitch-sounds-en-us-allison.spec
freeswitch-sounds-en-us-callie.spec
freeswitch-sounds-fr-ca-june.spec
freeswitch-sounds-music.spec
freeswitch-sounds-pt-BR-karina.spec
freeswitch-sounds-ru-RU-elena.spec
freeswitch-sounds-sv-se-jakob.spec
freeswitch.spec
msbuild.cmd
swig_common.i
freeswitch/libs/apr-util/xml/expat/lib/xmltok_impl.h

47 lines
661 B
C
Raw Normal View History

/*
Copyright (c) 1998, 1999 Thai Open Source Software Center Ltd
See the file COPYING for copying permission.
*/
enum {
BT_NONXML,
BT_MALFORM,
BT_LT,
BT_AMP,
BT_RSQB,
BT_LEAD2,
BT_LEAD3,
BT_LEAD4,
BT_TRAIL,
BT_CR,
BT_LF,
BT_GT,
BT_QUOT,
BT_APOS,
BT_EQUALS,
BT_QUEST,
BT_EXCL,
BT_SOL,
BT_SEMI,
BT_NUM,
BT_LSQB,
BT_S,
BT_NMSTRT,
BT_COLON,
BT_HEX,
BT_DIGIT,
BT_NAME,
BT_MINUS,
BT_OTHER, /* known not to be a name or name start character */
BT_NONASCII, /* might be a name or name start character */
BT_PERCNT,
BT_LPAR,
BT_RPAR,
BT_AST,
BT_PLUS,
BT_COMMA,
BT_VERBAR
};
#include <stddef.h>