├── .gitignore ├── README.md └── Source ├── Crypto ├── Test │ ├── flcTestCertificatePEM.pas │ ├── flcTestCertificateX509.pas │ ├── flcTestCrypto.pas │ ├── flcTestCryptoHash.pas │ ├── flcTestCryptoUtils.pas │ └── flcTestEncodingASN1.pas ├── flcCertificatePEM.pas ├── flcCertificateX509.pas ├── flcCipher.pas ├── flcCipherAES.pas ├── flcCipherDES.pas ├── flcCipherDH.pas ├── flcCipherEllipticCurve.pas ├── flcCipherRC2.pas ├── flcCipherRC4.pas ├── flcCipherRSA.pas ├── flcCipherRandom.pas ├── flcCipherTest.pas ├── flcCipherUtils.pas ├── flcCrypto.inc ├── flcCryptoHash.pas ├── flcCryptoRandom.pas ├── flcCryptoUtils.pas └── flcEncodingASN1.pas ├── HTMLParser ├── flcHTML.inc ├── flcHTMLCharEntity.pas ├── flcHTMLDoc.pas ├── flcHTMLDocBase.pas ├── flcHTMLDocElements.pas ├── flcHTMLElements.pas ├── flcHTMLLexer.pas ├── flcHTMLParser.pas ├── flcHTMLProperties.pas ├── flcHTMLReader.pas ├── flcHTMLStyleProperties.pas ├── flcHTMLStyleSheet.pas ├── flcHTMLStyleTypes.pas └── flcHTMLTest.pas ├── HTTP ├── flcHTTP.inc ├── flcHTTPClient.pas ├── flcHTTPServer.pas ├── flcHTTPTests.pas └── flcHTTPUtils.pas ├── Maths ├── flcComplex.pas ├── flcMaths.inc ├── flcMaths.pas ├── flcMatrix.pas ├── flcRational.pas ├── flcStatistics.pas └── flcVectors.pas ├── ProtocolBuffers ├── Examples │ ├── Output │ │ ├── pbTest1Messages.pas │ │ └── pbTestImport1Messages.pas │ ├── Test1.proto │ └── TestImport1.proto ├── ProtoBufCodeGenApp │ └── ProtoBufCodeGen.dpr ├── flcProtoBuf.inc ├── flcProtoBufProtoCodeGenPascal.pas ├── flcProtoBufProtoNodes.pas ├── flcProtoBufProtoParser.pas ├── flcProtoBufProtoParserTests.pas └── flcProtoBufUtils.pas ├── Sockets ├── flcSocket.pas ├── flcSocketLib.pas ├── flcSocketLibPosixDelphi.inc ├── flcSocketLibPosixFpc.inc ├── flcSocketLibSys.pas └── flcSocketLibWindows.inc ├── TCP ├── Tests │ ├── flcTCPTest.inc │ ├── flcTCPTest_Buffer.pas │ ├── flcTCPTest_Client.pas │ ├── flcTCPTest_ClientServer.pas │ ├── flcTCPTest_ClientServerTLS.pas │ ├── flcTCPTest_ClientTLS.pas │ ├── flcTCPTest_Server.pas │ ├── flcTCPTest_ServerTLS.pas │ └── flcTCPTests.pas ├── flcTCP.inc ├── flcTCPBuffer.pas ├── flcTCPClient.pas ├── flcTCPConnection.pas ├── flcTCPServer.pas ├── flcTCPServerUtils.pas └── flcTCPUtils.pas ├── TLS ├── flcTLS.inc ├── flcTLSAlert.pas ├── flcTLSAlgorithmTypes.pas ├── flcTLSBuffer.pas ├── flcTLSCertificate.pas ├── flcTLSCipher.pas ├── flcTLSCipherSuite.pas ├── flcTLSCompress.pas ├── flcTLSConsts.pas ├── flcTLSErrors.pas ├── flcTLSHandshake.pas ├── flcTLSHandshakeExtension.pas ├── flcTLSKeyExchangeParams.pas ├── flcTLSKeys.pas ├── flcTLSOpaqueEncoding.pas ├── flcTLSPRF.pas ├── flcTLSProtocolVersion.pas ├── flcTLSRandom.pas ├── flcTLSRecord.pas ├── flcTLSSessionID.pas ├── flcTLSTestCertificates.pas ├── flcTLSTests.pas ├── flcTLSTransportClient.pas ├── flcTLSTransportConnection.pas ├── flcTLSTransportServer.pas └── flcTLSTransportTypes.pas ├── UDP └── flcUDP.pas ├── Utils ├── Profile │ └── flcProfileHugeInt.pas ├── Templates │ ├── flcDataStructArrays.inc │ ├── flcDataStructMaps.inc │ ├── flcDataStructs.inc │ ├── flcDynArrays.inc │ └── flcInteger.inc ├── Test │ ├── flcTestDataStructArrays.pas │ ├── flcTestDataStructMaps.pas │ ├── flcTestHashGeneral.pas │ ├── flcTestHugeInt.pas │ ├── flcTestInclude.inc │ ├── flcTestStdTypes.pas │ ├── flcTestUtils.pas │ └── flcUtilsTest.pas ├── Win │ └── flcWinUtils.pas ├── flcASCII.pas ├── flcBase64.pas ├── flcBits32.pas ├── flcCharSet.pas ├── flcDataStructArrays.pas ├── flcDataStructMaps.pas ├── flcDataStructs.pas ├── flcDateTime.pas ├── flcDateTimeZone.pas ├── flcDecimal.pas ├── flcDynArrays.pas ├── flcFileUtils.pas ├── flcFloats.pas ├── flcHash.pas ├── flcHashGeneral.pas ├── flcHugeInt.pas ├── flcInteger.pas ├── flcJSON.pas ├── flcRandom.pas ├── flcStdTypes.pas ├── flcStreams.pas ├── flcStringBuilder.pas ├── flcStringPatternMatcher.pas ├── flcStrings.pas ├── flcSysUtils.pas ├── flcTimers.pas ├── flcUTF.pas ├── flcUnicodeChar.pas ├── flcUnicodeCodecs.pas ├── flcUnicodeReader.pas ├── flcUnicodeStrings.pas ├── flcUtils.pas └── flcZeroTermStrings.pas ├── XMLParser ├── flcXML.inc ├── flcXMLDocument.pas ├── flcXMLFunctions.pas └── flcXMLParser.pas ├── ZLib ├── flcZLib.pas ├── paszlib │ ├── Adler.pas │ ├── Crc.pas │ ├── InfBlock.pas │ ├── InfCodes.pas │ ├── InfFast.pas │ ├── InfTrees.pas │ ├── README.txt │ ├── ZUtil.pas │ ├── dzlib.pas │ ├── dzlib.txt │ ├── example.pas │ ├── gZlib.pas │ ├── gzIO.pas │ ├── infutil.pas │ ├── minigzip.pas │ ├── minizip │ │ ├── MiniUnz.pas │ │ ├── MiniZip.pas │ │ ├── UnZip.pas │ │ ├── Zip.pas │ │ └── ZipUtil.pas │ ├── trees.pas │ ├── zCompres.pas │ ├── zDeflate.pas │ ├── zInflate.pas │ ├── zUnCompr.pas │ └── zconf.inc ├── zlib123 │ ├── Compile.bat │ ├── adler32.c │ ├── adler32.obj │ ├── compress.c │ ├── compress.obj │ ├── crc32.c │ ├── crc32.h │ ├── crc32.obj │ ├── deflate.c │ ├── deflate.h │ ├── deflate.obj │ ├── example.c │ ├── gzio.c │ ├── gzio.obj │ ├── infback.c │ ├── infback.obj │ ├── inffast.c │ ├── inffast.h │ ├── inffast.obj │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inflate.obj │ ├── inftrees.c │ ├── inftrees.h │ ├── inftrees.obj │ ├── minigzip.c │ ├── trees.c │ ├── trees.h │ ├── trees.obj │ ├── uncompr.c │ ├── uncompr.obj │ ├── zconf.h │ ├── zconf.in.h │ ├── zlib.h │ ├── zutil.c │ ├── zutil.h │ └── zutil.obj └── zlib127 │ ├── ZLibEx.inc │ ├── ZLibEx.pas │ ├── ZLibExApi.pas │ ├── ZLibExGZ.pas │ ├── readme.txt │ ├── win32 │ ├── adler32.obj │ ├── compress.obj │ ├── crc32.obj │ ├── deflate.obj │ ├── infback.obj │ ├── inffast.obj │ ├── inflate.obj │ ├── inftrees.obj │ └── trees.obj │ ├── win64 │ ├── adler32.obj │ ├── compress.obj │ ├── crc32.obj │ ├── deflate.obj │ ├── infback.obj │ ├── inffast.obj │ ├── inflate.obj │ ├── inftrees.obj │ └── trees.obj │ └── zlib │ ├── adler32.c │ ├── compress.c │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── trees.c │ ├── trees.h │ ├── zconf.h │ ├── zlib.h │ ├── zutil.c │ └── zutil.h └── flcInclude.inc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/README.md -------------------------------------------------------------------------------- /Source/Crypto/Test/flcTestCertificatePEM.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Crypto/Test/flcTestCertificatePEM.pas -------------------------------------------------------------------------------- /Source/Crypto/Test/flcTestCertificateX509.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Crypto/Test/flcTestCertificateX509.pas -------------------------------------------------------------------------------- /Source/Crypto/Test/flcTestCrypto.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Crypto/Test/flcTestCrypto.pas -------------------------------------------------------------------------------- /Source/Crypto/Test/flcTestCryptoHash.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Crypto/Test/flcTestCryptoHash.pas -------------------------------------------------------------------------------- /Source/Crypto/Test/flcTestCryptoUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Crypto/Test/flcTestCryptoUtils.pas -------------------------------------------------------------------------------- /Source/Crypto/Test/flcTestEncodingASN1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Crypto/Test/flcTestEncodingASN1.pas -------------------------------------------------------------------------------- /Source/Crypto/flcCertificatePEM.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Crypto/flcCertificatePEM.pas -------------------------------------------------------------------------------- /Source/Crypto/flcCertificateX509.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Crypto/flcCertificateX509.pas -------------------------------------------------------------------------------- /Source/Crypto/flcCipher.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Crypto/flcCipher.pas -------------------------------------------------------------------------------- /Source/Crypto/flcCipherAES.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Crypto/flcCipherAES.pas -------------------------------------------------------------------------------- /Source/Crypto/flcCipherDES.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Crypto/flcCipherDES.pas -------------------------------------------------------------------------------- /Source/Crypto/flcCipherDH.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Crypto/flcCipherDH.pas -------------------------------------------------------------------------------- /Source/Crypto/flcCipherEllipticCurve.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Crypto/flcCipherEllipticCurve.pas -------------------------------------------------------------------------------- /Source/Crypto/flcCipherRC2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Crypto/flcCipherRC2.pas -------------------------------------------------------------------------------- /Source/Crypto/flcCipherRC4.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Crypto/flcCipherRC4.pas -------------------------------------------------------------------------------- /Source/Crypto/flcCipherRSA.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Crypto/flcCipherRSA.pas -------------------------------------------------------------------------------- /Source/Crypto/flcCipherRandom.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Crypto/flcCipherRandom.pas -------------------------------------------------------------------------------- /Source/Crypto/flcCipherTest.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Crypto/flcCipherTest.pas -------------------------------------------------------------------------------- /Source/Crypto/flcCipherUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Crypto/flcCipherUtils.pas -------------------------------------------------------------------------------- /Source/Crypto/flcCrypto.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Crypto/flcCrypto.inc -------------------------------------------------------------------------------- /Source/Crypto/flcCryptoHash.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Crypto/flcCryptoHash.pas -------------------------------------------------------------------------------- /Source/Crypto/flcCryptoRandom.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Crypto/flcCryptoRandom.pas -------------------------------------------------------------------------------- /Source/Crypto/flcCryptoUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Crypto/flcCryptoUtils.pas -------------------------------------------------------------------------------- /Source/Crypto/flcEncodingASN1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Crypto/flcEncodingASN1.pas -------------------------------------------------------------------------------- /Source/HTMLParser/flcHTML.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/HTMLParser/flcHTML.inc -------------------------------------------------------------------------------- /Source/HTMLParser/flcHTMLCharEntity.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/HTMLParser/flcHTMLCharEntity.pas -------------------------------------------------------------------------------- /Source/HTMLParser/flcHTMLDoc.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/HTMLParser/flcHTMLDoc.pas -------------------------------------------------------------------------------- /Source/HTMLParser/flcHTMLDocBase.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/HTMLParser/flcHTMLDocBase.pas -------------------------------------------------------------------------------- /Source/HTMLParser/flcHTMLDocElements.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/HTMLParser/flcHTMLDocElements.pas -------------------------------------------------------------------------------- /Source/HTMLParser/flcHTMLElements.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/HTMLParser/flcHTMLElements.pas -------------------------------------------------------------------------------- /Source/HTMLParser/flcHTMLLexer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/HTMLParser/flcHTMLLexer.pas -------------------------------------------------------------------------------- /Source/HTMLParser/flcHTMLParser.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/HTMLParser/flcHTMLParser.pas -------------------------------------------------------------------------------- /Source/HTMLParser/flcHTMLProperties.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/HTMLParser/flcHTMLProperties.pas -------------------------------------------------------------------------------- /Source/HTMLParser/flcHTMLReader.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/HTMLParser/flcHTMLReader.pas -------------------------------------------------------------------------------- /Source/HTMLParser/flcHTMLStyleProperties.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/HTMLParser/flcHTMLStyleProperties.pas -------------------------------------------------------------------------------- /Source/HTMLParser/flcHTMLStyleSheet.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/HTMLParser/flcHTMLStyleSheet.pas -------------------------------------------------------------------------------- /Source/HTMLParser/flcHTMLStyleTypes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/HTMLParser/flcHTMLStyleTypes.pas -------------------------------------------------------------------------------- /Source/HTMLParser/flcHTMLTest.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/HTMLParser/flcHTMLTest.pas -------------------------------------------------------------------------------- /Source/HTTP/flcHTTP.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/HTTP/flcHTTP.inc -------------------------------------------------------------------------------- /Source/HTTP/flcHTTPClient.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/HTTP/flcHTTPClient.pas -------------------------------------------------------------------------------- /Source/HTTP/flcHTTPServer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/HTTP/flcHTTPServer.pas -------------------------------------------------------------------------------- /Source/HTTP/flcHTTPTests.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/HTTP/flcHTTPTests.pas -------------------------------------------------------------------------------- /Source/HTTP/flcHTTPUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/HTTP/flcHTTPUtils.pas -------------------------------------------------------------------------------- /Source/Maths/flcComplex.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Maths/flcComplex.pas -------------------------------------------------------------------------------- /Source/Maths/flcMaths.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Maths/flcMaths.inc -------------------------------------------------------------------------------- /Source/Maths/flcMaths.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Maths/flcMaths.pas -------------------------------------------------------------------------------- /Source/Maths/flcMatrix.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Maths/flcMatrix.pas -------------------------------------------------------------------------------- /Source/Maths/flcRational.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Maths/flcRational.pas -------------------------------------------------------------------------------- /Source/Maths/flcStatistics.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Maths/flcStatistics.pas -------------------------------------------------------------------------------- /Source/Maths/flcVectors.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Maths/flcVectors.pas -------------------------------------------------------------------------------- /Source/ProtocolBuffers/Examples/Output/pbTest1Messages.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ProtocolBuffers/Examples/Output/pbTest1Messages.pas -------------------------------------------------------------------------------- /Source/ProtocolBuffers/Examples/Output/pbTestImport1Messages.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ProtocolBuffers/Examples/Output/pbTestImport1Messages.pas -------------------------------------------------------------------------------- /Source/ProtocolBuffers/Examples/Test1.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ProtocolBuffers/Examples/Test1.proto -------------------------------------------------------------------------------- /Source/ProtocolBuffers/Examples/TestImport1.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ProtocolBuffers/Examples/TestImport1.proto -------------------------------------------------------------------------------- /Source/ProtocolBuffers/ProtoBufCodeGenApp/ProtoBufCodeGen.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ProtocolBuffers/ProtoBufCodeGenApp/ProtoBufCodeGen.dpr -------------------------------------------------------------------------------- /Source/ProtocolBuffers/flcProtoBuf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ProtocolBuffers/flcProtoBuf.inc -------------------------------------------------------------------------------- /Source/ProtocolBuffers/flcProtoBufProtoCodeGenPascal.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ProtocolBuffers/flcProtoBufProtoCodeGenPascal.pas -------------------------------------------------------------------------------- /Source/ProtocolBuffers/flcProtoBufProtoNodes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ProtocolBuffers/flcProtoBufProtoNodes.pas -------------------------------------------------------------------------------- /Source/ProtocolBuffers/flcProtoBufProtoParser.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ProtocolBuffers/flcProtoBufProtoParser.pas -------------------------------------------------------------------------------- /Source/ProtocolBuffers/flcProtoBufProtoParserTests.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ProtocolBuffers/flcProtoBufProtoParserTests.pas -------------------------------------------------------------------------------- /Source/ProtocolBuffers/flcProtoBufUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ProtocolBuffers/flcProtoBufUtils.pas -------------------------------------------------------------------------------- /Source/Sockets/flcSocket.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Sockets/flcSocket.pas -------------------------------------------------------------------------------- /Source/Sockets/flcSocketLib.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Sockets/flcSocketLib.pas -------------------------------------------------------------------------------- /Source/Sockets/flcSocketLibPosixDelphi.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Sockets/flcSocketLibPosixDelphi.inc -------------------------------------------------------------------------------- /Source/Sockets/flcSocketLibPosixFpc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Sockets/flcSocketLibPosixFpc.inc -------------------------------------------------------------------------------- /Source/Sockets/flcSocketLibSys.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Sockets/flcSocketLibSys.pas -------------------------------------------------------------------------------- /Source/Sockets/flcSocketLibWindows.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Sockets/flcSocketLibWindows.inc -------------------------------------------------------------------------------- /Source/TCP/Tests/flcTCPTest.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TCP/Tests/flcTCPTest.inc -------------------------------------------------------------------------------- /Source/TCP/Tests/flcTCPTest_Buffer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TCP/Tests/flcTCPTest_Buffer.pas -------------------------------------------------------------------------------- /Source/TCP/Tests/flcTCPTest_Client.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TCP/Tests/flcTCPTest_Client.pas -------------------------------------------------------------------------------- /Source/TCP/Tests/flcTCPTest_ClientServer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TCP/Tests/flcTCPTest_ClientServer.pas -------------------------------------------------------------------------------- /Source/TCP/Tests/flcTCPTest_ClientServerTLS.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TCP/Tests/flcTCPTest_ClientServerTLS.pas -------------------------------------------------------------------------------- /Source/TCP/Tests/flcTCPTest_ClientTLS.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TCP/Tests/flcTCPTest_ClientTLS.pas -------------------------------------------------------------------------------- /Source/TCP/Tests/flcTCPTest_Server.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TCP/Tests/flcTCPTest_Server.pas -------------------------------------------------------------------------------- /Source/TCP/Tests/flcTCPTest_ServerTLS.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TCP/Tests/flcTCPTest_ServerTLS.pas -------------------------------------------------------------------------------- /Source/TCP/Tests/flcTCPTests.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TCP/Tests/flcTCPTests.pas -------------------------------------------------------------------------------- /Source/TCP/flcTCP.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TCP/flcTCP.inc -------------------------------------------------------------------------------- /Source/TCP/flcTCPBuffer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TCP/flcTCPBuffer.pas -------------------------------------------------------------------------------- /Source/TCP/flcTCPClient.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TCP/flcTCPClient.pas -------------------------------------------------------------------------------- /Source/TCP/flcTCPConnection.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TCP/flcTCPConnection.pas -------------------------------------------------------------------------------- /Source/TCP/flcTCPServer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TCP/flcTCPServer.pas -------------------------------------------------------------------------------- /Source/TCP/flcTCPServerUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TCP/flcTCPServerUtils.pas -------------------------------------------------------------------------------- /Source/TCP/flcTCPUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TCP/flcTCPUtils.pas -------------------------------------------------------------------------------- /Source/TLS/flcTLS.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TLS/flcTLS.inc -------------------------------------------------------------------------------- /Source/TLS/flcTLSAlert.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TLS/flcTLSAlert.pas -------------------------------------------------------------------------------- /Source/TLS/flcTLSAlgorithmTypes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TLS/flcTLSAlgorithmTypes.pas -------------------------------------------------------------------------------- /Source/TLS/flcTLSBuffer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TLS/flcTLSBuffer.pas -------------------------------------------------------------------------------- /Source/TLS/flcTLSCertificate.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TLS/flcTLSCertificate.pas -------------------------------------------------------------------------------- /Source/TLS/flcTLSCipher.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TLS/flcTLSCipher.pas -------------------------------------------------------------------------------- /Source/TLS/flcTLSCipherSuite.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TLS/flcTLSCipherSuite.pas -------------------------------------------------------------------------------- /Source/TLS/flcTLSCompress.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TLS/flcTLSCompress.pas -------------------------------------------------------------------------------- /Source/TLS/flcTLSConsts.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TLS/flcTLSConsts.pas -------------------------------------------------------------------------------- /Source/TLS/flcTLSErrors.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TLS/flcTLSErrors.pas -------------------------------------------------------------------------------- /Source/TLS/flcTLSHandshake.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TLS/flcTLSHandshake.pas -------------------------------------------------------------------------------- /Source/TLS/flcTLSHandshakeExtension.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TLS/flcTLSHandshakeExtension.pas -------------------------------------------------------------------------------- /Source/TLS/flcTLSKeyExchangeParams.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TLS/flcTLSKeyExchangeParams.pas -------------------------------------------------------------------------------- /Source/TLS/flcTLSKeys.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TLS/flcTLSKeys.pas -------------------------------------------------------------------------------- /Source/TLS/flcTLSOpaqueEncoding.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TLS/flcTLSOpaqueEncoding.pas -------------------------------------------------------------------------------- /Source/TLS/flcTLSPRF.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TLS/flcTLSPRF.pas -------------------------------------------------------------------------------- /Source/TLS/flcTLSProtocolVersion.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TLS/flcTLSProtocolVersion.pas -------------------------------------------------------------------------------- /Source/TLS/flcTLSRandom.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TLS/flcTLSRandom.pas -------------------------------------------------------------------------------- /Source/TLS/flcTLSRecord.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TLS/flcTLSRecord.pas -------------------------------------------------------------------------------- /Source/TLS/flcTLSSessionID.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TLS/flcTLSSessionID.pas -------------------------------------------------------------------------------- /Source/TLS/flcTLSTestCertificates.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TLS/flcTLSTestCertificates.pas -------------------------------------------------------------------------------- /Source/TLS/flcTLSTests.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TLS/flcTLSTests.pas -------------------------------------------------------------------------------- /Source/TLS/flcTLSTransportClient.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TLS/flcTLSTransportClient.pas -------------------------------------------------------------------------------- /Source/TLS/flcTLSTransportConnection.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TLS/flcTLSTransportConnection.pas -------------------------------------------------------------------------------- /Source/TLS/flcTLSTransportServer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TLS/flcTLSTransportServer.pas -------------------------------------------------------------------------------- /Source/TLS/flcTLSTransportTypes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/TLS/flcTLSTransportTypes.pas -------------------------------------------------------------------------------- /Source/UDP/flcUDP.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/UDP/flcUDP.pas -------------------------------------------------------------------------------- /Source/Utils/Profile/flcProfileHugeInt.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/Profile/flcProfileHugeInt.pas -------------------------------------------------------------------------------- /Source/Utils/Templates/flcDataStructArrays.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/Templates/flcDataStructArrays.inc -------------------------------------------------------------------------------- /Source/Utils/Templates/flcDataStructMaps.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/Templates/flcDataStructMaps.inc -------------------------------------------------------------------------------- /Source/Utils/Templates/flcDataStructs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/Templates/flcDataStructs.inc -------------------------------------------------------------------------------- /Source/Utils/Templates/flcDynArrays.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/Templates/flcDynArrays.inc -------------------------------------------------------------------------------- /Source/Utils/Templates/flcInteger.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/Templates/flcInteger.inc -------------------------------------------------------------------------------- /Source/Utils/Test/flcTestDataStructArrays.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/Test/flcTestDataStructArrays.pas -------------------------------------------------------------------------------- /Source/Utils/Test/flcTestDataStructMaps.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/Test/flcTestDataStructMaps.pas -------------------------------------------------------------------------------- /Source/Utils/Test/flcTestHashGeneral.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/Test/flcTestHashGeneral.pas -------------------------------------------------------------------------------- /Source/Utils/Test/flcTestHugeInt.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/Test/flcTestHugeInt.pas -------------------------------------------------------------------------------- /Source/Utils/Test/flcTestInclude.inc: -------------------------------------------------------------------------------- 1 | {$ASSERTIONS ON} 2 | {$DEFINE TEST} 3 | 4 | -------------------------------------------------------------------------------- /Source/Utils/Test/flcTestStdTypes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/Test/flcTestStdTypes.pas -------------------------------------------------------------------------------- /Source/Utils/Test/flcTestUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/Test/flcTestUtils.pas -------------------------------------------------------------------------------- /Source/Utils/Test/flcUtilsTest.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/Test/flcUtilsTest.pas -------------------------------------------------------------------------------- /Source/Utils/Win/flcWinUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/Win/flcWinUtils.pas -------------------------------------------------------------------------------- /Source/Utils/flcASCII.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/flcASCII.pas -------------------------------------------------------------------------------- /Source/Utils/flcBase64.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/flcBase64.pas -------------------------------------------------------------------------------- /Source/Utils/flcBits32.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/flcBits32.pas -------------------------------------------------------------------------------- /Source/Utils/flcCharSet.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/flcCharSet.pas -------------------------------------------------------------------------------- /Source/Utils/flcDataStructArrays.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/flcDataStructArrays.pas -------------------------------------------------------------------------------- /Source/Utils/flcDataStructMaps.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/flcDataStructMaps.pas -------------------------------------------------------------------------------- /Source/Utils/flcDataStructs.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/flcDataStructs.pas -------------------------------------------------------------------------------- /Source/Utils/flcDateTime.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/flcDateTime.pas -------------------------------------------------------------------------------- /Source/Utils/flcDateTimeZone.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/flcDateTimeZone.pas -------------------------------------------------------------------------------- /Source/Utils/flcDecimal.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/flcDecimal.pas -------------------------------------------------------------------------------- /Source/Utils/flcDynArrays.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/flcDynArrays.pas -------------------------------------------------------------------------------- /Source/Utils/flcFileUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/flcFileUtils.pas -------------------------------------------------------------------------------- /Source/Utils/flcFloats.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/flcFloats.pas -------------------------------------------------------------------------------- /Source/Utils/flcHash.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/flcHash.pas -------------------------------------------------------------------------------- /Source/Utils/flcHashGeneral.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/flcHashGeneral.pas -------------------------------------------------------------------------------- /Source/Utils/flcHugeInt.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/flcHugeInt.pas -------------------------------------------------------------------------------- /Source/Utils/flcInteger.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/flcInteger.pas -------------------------------------------------------------------------------- /Source/Utils/flcJSON.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/flcJSON.pas -------------------------------------------------------------------------------- /Source/Utils/flcRandom.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/flcRandom.pas -------------------------------------------------------------------------------- /Source/Utils/flcStdTypes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/flcStdTypes.pas -------------------------------------------------------------------------------- /Source/Utils/flcStreams.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/flcStreams.pas -------------------------------------------------------------------------------- /Source/Utils/flcStringBuilder.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/flcStringBuilder.pas -------------------------------------------------------------------------------- /Source/Utils/flcStringPatternMatcher.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/flcStringPatternMatcher.pas -------------------------------------------------------------------------------- /Source/Utils/flcStrings.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/flcStrings.pas -------------------------------------------------------------------------------- /Source/Utils/flcSysUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/flcSysUtils.pas -------------------------------------------------------------------------------- /Source/Utils/flcTimers.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/flcTimers.pas -------------------------------------------------------------------------------- /Source/Utils/flcUTF.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/flcUTF.pas -------------------------------------------------------------------------------- /Source/Utils/flcUnicodeChar.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/flcUnicodeChar.pas -------------------------------------------------------------------------------- /Source/Utils/flcUnicodeCodecs.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/flcUnicodeCodecs.pas -------------------------------------------------------------------------------- /Source/Utils/flcUnicodeReader.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/flcUnicodeReader.pas -------------------------------------------------------------------------------- /Source/Utils/flcUnicodeStrings.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/flcUnicodeStrings.pas -------------------------------------------------------------------------------- /Source/Utils/flcUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/flcUtils.pas -------------------------------------------------------------------------------- /Source/Utils/flcZeroTermStrings.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/Utils/flcZeroTermStrings.pas -------------------------------------------------------------------------------- /Source/XMLParser/flcXML.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/XMLParser/flcXML.inc -------------------------------------------------------------------------------- /Source/XMLParser/flcXMLDocument.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/XMLParser/flcXMLDocument.pas -------------------------------------------------------------------------------- /Source/XMLParser/flcXMLFunctions.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/XMLParser/flcXMLFunctions.pas -------------------------------------------------------------------------------- /Source/XMLParser/flcXMLParser.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/XMLParser/flcXMLParser.pas -------------------------------------------------------------------------------- /Source/ZLib/flcZLib.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/flcZLib.pas -------------------------------------------------------------------------------- /Source/ZLib/paszlib/Adler.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/paszlib/Adler.pas -------------------------------------------------------------------------------- /Source/ZLib/paszlib/Crc.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/paszlib/Crc.pas -------------------------------------------------------------------------------- /Source/ZLib/paszlib/InfBlock.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/paszlib/InfBlock.pas -------------------------------------------------------------------------------- /Source/ZLib/paszlib/InfCodes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/paszlib/InfCodes.pas -------------------------------------------------------------------------------- /Source/ZLib/paszlib/InfFast.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/paszlib/InfFast.pas -------------------------------------------------------------------------------- /Source/ZLib/paszlib/InfTrees.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/paszlib/InfTrees.pas -------------------------------------------------------------------------------- /Source/ZLib/paszlib/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/paszlib/README.txt -------------------------------------------------------------------------------- /Source/ZLib/paszlib/ZUtil.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/paszlib/ZUtil.pas -------------------------------------------------------------------------------- /Source/ZLib/paszlib/dzlib.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/paszlib/dzlib.pas -------------------------------------------------------------------------------- /Source/ZLib/paszlib/dzlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/paszlib/dzlib.txt -------------------------------------------------------------------------------- /Source/ZLib/paszlib/example.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/paszlib/example.pas -------------------------------------------------------------------------------- /Source/ZLib/paszlib/gZlib.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/paszlib/gZlib.pas -------------------------------------------------------------------------------- /Source/ZLib/paszlib/gzIO.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/paszlib/gzIO.pas -------------------------------------------------------------------------------- /Source/ZLib/paszlib/infutil.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/paszlib/infutil.pas -------------------------------------------------------------------------------- /Source/ZLib/paszlib/minigzip.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/paszlib/minigzip.pas -------------------------------------------------------------------------------- /Source/ZLib/paszlib/minizip/MiniUnz.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/paszlib/minizip/MiniUnz.pas -------------------------------------------------------------------------------- /Source/ZLib/paszlib/minizip/MiniZip.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/paszlib/minizip/MiniZip.pas -------------------------------------------------------------------------------- /Source/ZLib/paszlib/minizip/UnZip.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/paszlib/minizip/UnZip.pas -------------------------------------------------------------------------------- /Source/ZLib/paszlib/minizip/Zip.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/paszlib/minizip/Zip.pas -------------------------------------------------------------------------------- /Source/ZLib/paszlib/minizip/ZipUtil.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/paszlib/minizip/ZipUtil.pas -------------------------------------------------------------------------------- /Source/ZLib/paszlib/trees.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/paszlib/trees.pas -------------------------------------------------------------------------------- /Source/ZLib/paszlib/zCompres.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/paszlib/zCompres.pas -------------------------------------------------------------------------------- /Source/ZLib/paszlib/zDeflate.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/paszlib/zDeflate.pas -------------------------------------------------------------------------------- /Source/ZLib/paszlib/zInflate.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/paszlib/zInflate.pas -------------------------------------------------------------------------------- /Source/ZLib/paszlib/zUnCompr.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/paszlib/zUnCompr.pas -------------------------------------------------------------------------------- /Source/ZLib/paszlib/zconf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/paszlib/zconf.inc -------------------------------------------------------------------------------- /Source/ZLib/zlib123/Compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/Compile.bat -------------------------------------------------------------------------------- /Source/ZLib/zlib123/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/adler32.c -------------------------------------------------------------------------------- /Source/ZLib/zlib123/adler32.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/adler32.obj -------------------------------------------------------------------------------- /Source/ZLib/zlib123/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/compress.c -------------------------------------------------------------------------------- /Source/ZLib/zlib123/compress.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/compress.obj -------------------------------------------------------------------------------- /Source/ZLib/zlib123/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/crc32.c -------------------------------------------------------------------------------- /Source/ZLib/zlib123/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/crc32.h -------------------------------------------------------------------------------- /Source/ZLib/zlib123/crc32.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/crc32.obj -------------------------------------------------------------------------------- /Source/ZLib/zlib123/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/deflate.c -------------------------------------------------------------------------------- /Source/ZLib/zlib123/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/deflate.h -------------------------------------------------------------------------------- /Source/ZLib/zlib123/deflate.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/deflate.obj -------------------------------------------------------------------------------- /Source/ZLib/zlib123/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/example.c -------------------------------------------------------------------------------- /Source/ZLib/zlib123/gzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/gzio.c -------------------------------------------------------------------------------- /Source/ZLib/zlib123/gzio.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/gzio.obj -------------------------------------------------------------------------------- /Source/ZLib/zlib123/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/infback.c -------------------------------------------------------------------------------- /Source/ZLib/zlib123/infback.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/infback.obj -------------------------------------------------------------------------------- /Source/ZLib/zlib123/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/inffast.c -------------------------------------------------------------------------------- /Source/ZLib/zlib123/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/inffast.h -------------------------------------------------------------------------------- /Source/ZLib/zlib123/inffast.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/inffast.obj -------------------------------------------------------------------------------- /Source/ZLib/zlib123/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/inffixed.h -------------------------------------------------------------------------------- /Source/ZLib/zlib123/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/inflate.c -------------------------------------------------------------------------------- /Source/ZLib/zlib123/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/inflate.h -------------------------------------------------------------------------------- /Source/ZLib/zlib123/inflate.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/inflate.obj -------------------------------------------------------------------------------- /Source/ZLib/zlib123/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/inftrees.c -------------------------------------------------------------------------------- /Source/ZLib/zlib123/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/inftrees.h -------------------------------------------------------------------------------- /Source/ZLib/zlib123/inftrees.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/inftrees.obj -------------------------------------------------------------------------------- /Source/ZLib/zlib123/minigzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/minigzip.c -------------------------------------------------------------------------------- /Source/ZLib/zlib123/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/trees.c -------------------------------------------------------------------------------- /Source/ZLib/zlib123/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/trees.h -------------------------------------------------------------------------------- /Source/ZLib/zlib123/trees.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/trees.obj -------------------------------------------------------------------------------- /Source/ZLib/zlib123/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/uncompr.c -------------------------------------------------------------------------------- /Source/ZLib/zlib123/uncompr.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/uncompr.obj -------------------------------------------------------------------------------- /Source/ZLib/zlib123/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/zconf.h -------------------------------------------------------------------------------- /Source/ZLib/zlib123/zconf.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/zconf.in.h -------------------------------------------------------------------------------- /Source/ZLib/zlib123/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/zlib.h -------------------------------------------------------------------------------- /Source/ZLib/zlib123/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/zutil.c -------------------------------------------------------------------------------- /Source/ZLib/zlib123/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/zutil.h -------------------------------------------------------------------------------- /Source/ZLib/zlib123/zutil.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib123/zutil.obj -------------------------------------------------------------------------------- /Source/ZLib/zlib127/ZLibEx.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/ZLibEx.inc -------------------------------------------------------------------------------- /Source/ZLib/zlib127/ZLibEx.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/ZLibEx.pas -------------------------------------------------------------------------------- /Source/ZLib/zlib127/ZLibExApi.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/ZLibExApi.pas -------------------------------------------------------------------------------- /Source/ZLib/zlib127/ZLibExGZ.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/ZLibExGZ.pas -------------------------------------------------------------------------------- /Source/ZLib/zlib127/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/readme.txt -------------------------------------------------------------------------------- /Source/ZLib/zlib127/win32/adler32.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/win32/adler32.obj -------------------------------------------------------------------------------- /Source/ZLib/zlib127/win32/compress.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/win32/compress.obj -------------------------------------------------------------------------------- /Source/ZLib/zlib127/win32/crc32.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/win32/crc32.obj -------------------------------------------------------------------------------- /Source/ZLib/zlib127/win32/deflate.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/win32/deflate.obj -------------------------------------------------------------------------------- /Source/ZLib/zlib127/win32/infback.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/win32/infback.obj -------------------------------------------------------------------------------- /Source/ZLib/zlib127/win32/inffast.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/win32/inffast.obj -------------------------------------------------------------------------------- /Source/ZLib/zlib127/win32/inflate.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/win32/inflate.obj -------------------------------------------------------------------------------- /Source/ZLib/zlib127/win32/inftrees.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/win32/inftrees.obj -------------------------------------------------------------------------------- /Source/ZLib/zlib127/win32/trees.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/win32/trees.obj -------------------------------------------------------------------------------- /Source/ZLib/zlib127/win64/adler32.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/win64/adler32.obj -------------------------------------------------------------------------------- /Source/ZLib/zlib127/win64/compress.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/win64/compress.obj -------------------------------------------------------------------------------- /Source/ZLib/zlib127/win64/crc32.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/win64/crc32.obj -------------------------------------------------------------------------------- /Source/ZLib/zlib127/win64/deflate.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/win64/deflate.obj -------------------------------------------------------------------------------- /Source/ZLib/zlib127/win64/infback.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/win64/infback.obj -------------------------------------------------------------------------------- /Source/ZLib/zlib127/win64/inffast.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/win64/inffast.obj -------------------------------------------------------------------------------- /Source/ZLib/zlib127/win64/inflate.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/win64/inflate.obj -------------------------------------------------------------------------------- /Source/ZLib/zlib127/win64/inftrees.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/win64/inftrees.obj -------------------------------------------------------------------------------- /Source/ZLib/zlib127/win64/trees.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/win64/trees.obj -------------------------------------------------------------------------------- /Source/ZLib/zlib127/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/zlib/adler32.c -------------------------------------------------------------------------------- /Source/ZLib/zlib127/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/zlib/compress.c -------------------------------------------------------------------------------- /Source/ZLib/zlib127/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/zlib/crc32.c -------------------------------------------------------------------------------- /Source/ZLib/zlib127/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/zlib/crc32.h -------------------------------------------------------------------------------- /Source/ZLib/zlib127/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/zlib/deflate.c -------------------------------------------------------------------------------- /Source/ZLib/zlib127/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/zlib/deflate.h -------------------------------------------------------------------------------- /Source/ZLib/zlib127/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/zlib/infback.c -------------------------------------------------------------------------------- /Source/ZLib/zlib127/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/zlib/inffast.c -------------------------------------------------------------------------------- /Source/ZLib/zlib127/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/zlib/inffast.h -------------------------------------------------------------------------------- /Source/ZLib/zlib127/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/zlib/inffixed.h -------------------------------------------------------------------------------- /Source/ZLib/zlib127/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/zlib/inflate.c -------------------------------------------------------------------------------- /Source/ZLib/zlib127/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/zlib/inflate.h -------------------------------------------------------------------------------- /Source/ZLib/zlib127/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/zlib/inftrees.c -------------------------------------------------------------------------------- /Source/ZLib/zlib127/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/zlib/inftrees.h -------------------------------------------------------------------------------- /Source/ZLib/zlib127/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/zlib/trees.c -------------------------------------------------------------------------------- /Source/ZLib/zlib127/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/zlib/trees.h -------------------------------------------------------------------------------- /Source/ZLib/zlib127/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/zlib/zconf.h -------------------------------------------------------------------------------- /Source/ZLib/zlib127/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/zlib/zlib.h -------------------------------------------------------------------------------- /Source/ZLib/zlib127/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/zlib/zutil.c -------------------------------------------------------------------------------- /Source/ZLib/zlib127/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/ZLib/zlib127/zlib/zutil.h -------------------------------------------------------------------------------- /Source/flcInclude.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fundamentalslib/fundamentals5/HEAD/Source/flcInclude.inc --------------------------------------------------------------------------------