├── .cvsignore ├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── NEWS ├── README ├── TODO ├── bootstrap ├── config ├── .cvsignore ├── Makefile.am └── expat.m4 ├── configure.in ├── doc ├── .cvsignore ├── Doxyfile.in ├── Log4C-DevelopersGuide.odt ├── Makefile.am ├── main.doc.in └── old │ └── log4cHowto.html ├── examples ├── .cvsignore ├── Makefile.am ├── README ├── application_1.c ├── application_2.c ├── application_3.c ├── application_3.h ├── example_appenders.c ├── example_formatters.c ├── helloworld │ ├── Makefile.am │ ├── README │ └── helloworld.c ├── helloworld1 │ ├── Makefile.am │ ├── README │ ├── helloworld1.c │ └── mylog.h ├── log4crc.in └── userloc_formatter.c ├── log4c-config.in ├── log4c.m4 ├── log4c.spec.in ├── log4crc.sample.in ├── macosx ├── English.lproj │ └── InfoPlist.strings ├── Info.plist ├── log4c.xcode │ └── project.pbxproj ├── log4c.xcodeproj │ └── project.pbxproj └── version.plist ├── msvc6 ├── Makefile ├── README ├── gotest.sh └── log4c │ └── version.h ├── release ├── src ├── .cvsignore ├── Makefile.am ├── log4c.h ├── log4c │ ├── .cvsignore │ ├── Makefile.am │ ├── appender.c │ ├── appender.h │ ├── appender_type_mmap.c │ ├── appender_type_mmap.h │ ├── appender_type_rollingfile.c │ ├── appender_type_rollingfile.h │ ├── appender_type_stream.c │ ├── appender_type_stream.h │ ├── appender_type_stream2.c │ ├── appender_type_stream2.h │ ├── appender_type_syslog.c │ ├── appender_type_syslog.h │ ├── buffer.h │ ├── category.c │ ├── category.h │ ├── config-win32.h │ ├── defs.h │ ├── init.c │ ├── init.h │ ├── layout.c │ ├── layout.h │ ├── layout_type_basic.c │ ├── layout_type_basic.h │ ├── layout_type_basic_r.c │ ├── layout_type_basic_r.h │ ├── layout_type_dated.c │ ├── layout_type_dated.h │ ├── layout_type_dated_r.c │ ├── layout_type_dated_r.h │ ├── location_info.h │ ├── logging_event.c │ ├── logging_event.h │ ├── priority.c │ ├── priority.h │ ├── rc.c │ ├── rc.h │ ├── rollingpolicy.c │ ├── rollingpolicy.h │ ├── rollingpolicy_type_sizewin.c │ ├── rollingpolicy_type_sizewin.h │ ├── version.c │ └── version.h.in └── sd │ ├── .cvsignore │ ├── Makefile.am │ ├── defs.h │ ├── domnode-expat.c │ ├── domnode-xml-parser.c │ ├── domnode-xml-parser.h │ ├── domnode-xml-parser.y │ ├── domnode-xml-scanner.c │ ├── domnode-xml-scanner.h │ ├── domnode-xml-scanner.l │ ├── domnode-xml.c │ ├── domnode-xml.h │ ├── domnode.c │ ├── domnode.h │ ├── error.c │ ├── error.h │ ├── factory.c │ ├── factory.h │ ├── hash.c │ ├── hash.h │ ├── list.c │ ├── list.h │ ├── malloc.c │ ├── malloc.h │ ├── sd_xplatform.c │ ├── sd_xplatform.h │ ├── sprintf.c │ ├── sprintf.h │ ├── sprintf.osf.c │ ├── stack.c │ ├── stack.h │ ├── sync │ ├── test.c │ └── test.h └── tests ├── .cvsignore ├── Makefile.am └── log4c ├── .cvsignore ├── Makefile.am ├── bench.c ├── bench_fwrite.c ├── cpp_compile_test.cpp ├── test_category.c ├── test_category.ref ├── test_layout_r.c ├── test_rc.c ├── test_rc.in ├── test_rc.ref ├── test_rollingfile_appender.c ├── test_rollingfile_appender_mt.c └── test_stream2.c /.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/.cvsignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/TODO -------------------------------------------------------------------------------- /bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/bootstrap -------------------------------------------------------------------------------- /config/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/config/.cvsignore -------------------------------------------------------------------------------- /config/Makefile.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/expat.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/config/expat.m4 -------------------------------------------------------------------------------- /configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/configure.in -------------------------------------------------------------------------------- /doc/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile.in 2 | -------------------------------------------------------------------------------- /doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/doc/Doxyfile.in -------------------------------------------------------------------------------- /doc/Log4C-DevelopersGuide.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/doc/Log4C-DevelopersGuide.odt -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/main.doc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/doc/main.doc.in -------------------------------------------------------------------------------- /doc/old/log4cHowto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/doc/old/log4cHowto.html -------------------------------------------------------------------------------- /examples/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/examples/.cvsignore -------------------------------------------------------------------------------- /examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/examples/Makefile.am -------------------------------------------------------------------------------- /examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/examples/README -------------------------------------------------------------------------------- /examples/application_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/examples/application_1.c -------------------------------------------------------------------------------- /examples/application_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/examples/application_2.c -------------------------------------------------------------------------------- /examples/application_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/examples/application_3.c -------------------------------------------------------------------------------- /examples/application_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/examples/application_3.h -------------------------------------------------------------------------------- /examples/example_appenders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/examples/example_appenders.c -------------------------------------------------------------------------------- /examples/example_formatters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/examples/example_formatters.c -------------------------------------------------------------------------------- /examples/helloworld/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/examples/helloworld/Makefile.am -------------------------------------------------------------------------------- /examples/helloworld/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/examples/helloworld/README -------------------------------------------------------------------------------- /examples/helloworld/helloworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/examples/helloworld/helloworld.c -------------------------------------------------------------------------------- /examples/helloworld1/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/examples/helloworld1/Makefile.am -------------------------------------------------------------------------------- /examples/helloworld1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/examples/helloworld1/README -------------------------------------------------------------------------------- /examples/helloworld1/helloworld1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/examples/helloworld1/helloworld1.c -------------------------------------------------------------------------------- /examples/helloworld1/mylog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/examples/helloworld1/mylog.h -------------------------------------------------------------------------------- /examples/log4crc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/examples/log4crc.in -------------------------------------------------------------------------------- /examples/userloc_formatter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/examples/userloc_formatter.c -------------------------------------------------------------------------------- /log4c-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/log4c-config.in -------------------------------------------------------------------------------- /log4c.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/log4c.m4 -------------------------------------------------------------------------------- /log4c.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/log4c.spec.in -------------------------------------------------------------------------------- /log4crc.sample.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/log4crc.sample.in -------------------------------------------------------------------------------- /macosx/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/macosx/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /macosx/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/macosx/Info.plist -------------------------------------------------------------------------------- /macosx/log4c.xcode/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/macosx/log4c.xcode/project.pbxproj -------------------------------------------------------------------------------- /macosx/log4c.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/macosx/log4c.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macosx/version.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/macosx/version.plist -------------------------------------------------------------------------------- /msvc6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/msvc6/Makefile -------------------------------------------------------------------------------- /msvc6/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/msvc6/README -------------------------------------------------------------------------------- /msvc6/gotest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/msvc6/gotest.sh -------------------------------------------------------------------------------- /msvc6/log4c/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/msvc6/log4c/version.h -------------------------------------------------------------------------------- /release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/release -------------------------------------------------------------------------------- /src/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/.cvsignore -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/log4c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c.h -------------------------------------------------------------------------------- /src/log4c/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/.cvsignore -------------------------------------------------------------------------------- /src/log4c/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/Makefile.am -------------------------------------------------------------------------------- /src/log4c/appender.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/appender.c -------------------------------------------------------------------------------- /src/log4c/appender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/appender.h -------------------------------------------------------------------------------- /src/log4c/appender_type_mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/appender_type_mmap.c -------------------------------------------------------------------------------- /src/log4c/appender_type_mmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/appender_type_mmap.h -------------------------------------------------------------------------------- /src/log4c/appender_type_rollingfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/appender_type_rollingfile.c -------------------------------------------------------------------------------- /src/log4c/appender_type_rollingfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/appender_type_rollingfile.h -------------------------------------------------------------------------------- /src/log4c/appender_type_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/appender_type_stream.c -------------------------------------------------------------------------------- /src/log4c/appender_type_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/appender_type_stream.h -------------------------------------------------------------------------------- /src/log4c/appender_type_stream2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/appender_type_stream2.c -------------------------------------------------------------------------------- /src/log4c/appender_type_stream2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/appender_type_stream2.h -------------------------------------------------------------------------------- /src/log4c/appender_type_syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/appender_type_syslog.c -------------------------------------------------------------------------------- /src/log4c/appender_type_syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/appender_type_syslog.h -------------------------------------------------------------------------------- /src/log4c/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/buffer.h -------------------------------------------------------------------------------- /src/log4c/category.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/category.c -------------------------------------------------------------------------------- /src/log4c/category.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/category.h -------------------------------------------------------------------------------- /src/log4c/config-win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/config-win32.h -------------------------------------------------------------------------------- /src/log4c/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/defs.h -------------------------------------------------------------------------------- /src/log4c/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/init.c -------------------------------------------------------------------------------- /src/log4c/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/init.h -------------------------------------------------------------------------------- /src/log4c/layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/layout.c -------------------------------------------------------------------------------- /src/log4c/layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/layout.h -------------------------------------------------------------------------------- /src/log4c/layout_type_basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/layout_type_basic.c -------------------------------------------------------------------------------- /src/log4c/layout_type_basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/layout_type_basic.h -------------------------------------------------------------------------------- /src/log4c/layout_type_basic_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/layout_type_basic_r.c -------------------------------------------------------------------------------- /src/log4c/layout_type_basic_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/layout_type_basic_r.h -------------------------------------------------------------------------------- /src/log4c/layout_type_dated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/layout_type_dated.c -------------------------------------------------------------------------------- /src/log4c/layout_type_dated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/layout_type_dated.h -------------------------------------------------------------------------------- /src/log4c/layout_type_dated_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/layout_type_dated_r.c -------------------------------------------------------------------------------- /src/log4c/layout_type_dated_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/layout_type_dated_r.h -------------------------------------------------------------------------------- /src/log4c/location_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/location_info.h -------------------------------------------------------------------------------- /src/log4c/logging_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/logging_event.c -------------------------------------------------------------------------------- /src/log4c/logging_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/logging_event.h -------------------------------------------------------------------------------- /src/log4c/priority.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/priority.c -------------------------------------------------------------------------------- /src/log4c/priority.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/priority.h -------------------------------------------------------------------------------- /src/log4c/rc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/rc.c -------------------------------------------------------------------------------- /src/log4c/rc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/rc.h -------------------------------------------------------------------------------- /src/log4c/rollingpolicy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/rollingpolicy.c -------------------------------------------------------------------------------- /src/log4c/rollingpolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/rollingpolicy.h -------------------------------------------------------------------------------- /src/log4c/rollingpolicy_type_sizewin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/rollingpolicy_type_sizewin.c -------------------------------------------------------------------------------- /src/log4c/rollingpolicy_type_sizewin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/rollingpolicy_type_sizewin.h -------------------------------------------------------------------------------- /src/log4c/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/version.c -------------------------------------------------------------------------------- /src/log4c/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/log4c/version.h.in -------------------------------------------------------------------------------- /src/sd/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/sd/.cvsignore -------------------------------------------------------------------------------- /src/sd/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/sd/Makefile.am -------------------------------------------------------------------------------- /src/sd/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/sd/defs.h -------------------------------------------------------------------------------- /src/sd/domnode-expat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/sd/domnode-expat.c -------------------------------------------------------------------------------- /src/sd/domnode-xml-parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/sd/domnode-xml-parser.c -------------------------------------------------------------------------------- /src/sd/domnode-xml-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/sd/domnode-xml-parser.h -------------------------------------------------------------------------------- /src/sd/domnode-xml-parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/sd/domnode-xml-parser.y -------------------------------------------------------------------------------- /src/sd/domnode-xml-scanner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/sd/domnode-xml-scanner.c -------------------------------------------------------------------------------- /src/sd/domnode-xml-scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/sd/domnode-xml-scanner.h -------------------------------------------------------------------------------- /src/sd/domnode-xml-scanner.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/sd/domnode-xml-scanner.l -------------------------------------------------------------------------------- /src/sd/domnode-xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/sd/domnode-xml.c -------------------------------------------------------------------------------- /src/sd/domnode-xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/sd/domnode-xml.h -------------------------------------------------------------------------------- /src/sd/domnode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/sd/domnode.c -------------------------------------------------------------------------------- /src/sd/domnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/sd/domnode.h -------------------------------------------------------------------------------- /src/sd/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/sd/error.c -------------------------------------------------------------------------------- /src/sd/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/sd/error.h -------------------------------------------------------------------------------- /src/sd/factory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/sd/factory.c -------------------------------------------------------------------------------- /src/sd/factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/sd/factory.h -------------------------------------------------------------------------------- /src/sd/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/sd/hash.c -------------------------------------------------------------------------------- /src/sd/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/sd/hash.h -------------------------------------------------------------------------------- /src/sd/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/sd/list.c -------------------------------------------------------------------------------- /src/sd/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/sd/list.h -------------------------------------------------------------------------------- /src/sd/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/sd/malloc.c -------------------------------------------------------------------------------- /src/sd/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/sd/malloc.h -------------------------------------------------------------------------------- /src/sd/sd_xplatform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/sd/sd_xplatform.c -------------------------------------------------------------------------------- /src/sd/sd_xplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/sd/sd_xplatform.h -------------------------------------------------------------------------------- /src/sd/sprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/sd/sprintf.c -------------------------------------------------------------------------------- /src/sd/sprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/sd/sprintf.h -------------------------------------------------------------------------------- /src/sd/sprintf.osf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/sd/sprintf.osf.c -------------------------------------------------------------------------------- /src/sd/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/sd/stack.c -------------------------------------------------------------------------------- /src/sd/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/sd/stack.h -------------------------------------------------------------------------------- /src/sd/sync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/sd/sync -------------------------------------------------------------------------------- /src/sd/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/sd/test.c -------------------------------------------------------------------------------- /src/sd/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/src/sd/test.h -------------------------------------------------------------------------------- /tests/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/tests/.cvsignore -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = log4c 2 | 3 | -------------------------------------------------------------------------------- /tests/log4c/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/tests/log4c/.cvsignore -------------------------------------------------------------------------------- /tests/log4c/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/tests/log4c/Makefile.am -------------------------------------------------------------------------------- /tests/log4c/bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/tests/log4c/bench.c -------------------------------------------------------------------------------- /tests/log4c/bench_fwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/tests/log4c/bench_fwrite.c -------------------------------------------------------------------------------- /tests/log4c/cpp_compile_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/tests/log4c/cpp_compile_test.cpp -------------------------------------------------------------------------------- /tests/log4c/test_category.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/tests/log4c/test_category.c -------------------------------------------------------------------------------- /tests/log4c/test_category.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/tests/log4c/test_category.ref -------------------------------------------------------------------------------- /tests/log4c/test_layout_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/tests/log4c/test_layout_r.c -------------------------------------------------------------------------------- /tests/log4c/test_rc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/tests/log4c/test_rc.c -------------------------------------------------------------------------------- /tests/log4c/test_rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/tests/log4c/test_rc.in -------------------------------------------------------------------------------- /tests/log4c/test_rc.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/tests/log4c/test_rc.ref -------------------------------------------------------------------------------- /tests/log4c/test_rollingfile_appender.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/tests/log4c/test_rollingfile_appender.c -------------------------------------------------------------------------------- /tests/log4c/test_rollingfile_appender_mt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/tests/log4c/test_rollingfile_appender_mt.c -------------------------------------------------------------------------------- /tests/log4c/test_stream2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmanojlovic/log4c/HEAD/tests/log4c/test_stream2.c --------------------------------------------------------------------------------