├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── BOIT DLL ├── AppLifeRoutine.c ├── BOIT DLL.vcxproj ├── BOIT DLL.vcxproj.filters ├── Base64.h ├── CQAPITransfer.c ├── CQAPITransfer.h ├── CQLog.c ├── CQP.lib ├── CoolQDef.h ├── CoolQ_API_Entry.c ├── CoolQ_State.h ├── DllMain.c ├── Global.h ├── SendEventHandler.c └── app.json ├── BOIT InfoStruct ├── BOIT InfoStruct.vcxitems └── BOIT InfoStruct.vcxitems.filters ├── BOIT Server ├── APITransfer.c ├── APITransfer.h ├── AsyncINet.c ├── AsyncINet.h ├── BOIT Server.vcxproj ├── BOIT Server.vcxproj.filters ├── Base64.c ├── CommandEvent.h ├── CommandManager.c ├── CommandManager.h ├── Command_about.c ├── Command_admin.c ├── Command_boast.c ├── Command_cat.c ├── Command_codeforces.c ├── Command_help.c ├── Command_luogu.c ├── Command_oier.c ├── Command_q_and_a.c ├── Command_qwq.c ├── Command_run.c ├── Command_run.h ├── Command_runcode.c ├── Command_savecode.c ├── Command_sponsor.c ├── Command_stop.c ├── Command_version.c ├── Corpus.c ├── Corpus.h ├── DirManagement.c ├── DirManagement.h ├── Global.h ├── HandleBOITCode.c ├── HandleBOITCode.h ├── InlineCommand.c ├── InlineCommand.h ├── MessageReply.c ├── MessageWatch.c ├── MessageWatch.h ├── PerCommandData.c ├── PerGroupData.c ├── PerUserData.c ├── Pic.cpp ├── Pic.h ├── RecvEventHandler.c ├── RecvEventHandler.h ├── RegisterRW.c ├── RegisterRW.h ├── RemoveCQEscapeChar.c ├── RemoveCQEscapeChar.h ├── SendEventDispatch.c ├── SendEventDispatch.h ├── ServerMain.c ├── ServerState.c ├── SessionManage.c ├── SessionManage.h ├── SimpleSandbox.c ├── SimpleSandbox.h ├── TokenManage.c ├── VBuffer.c ├── VBuffer.h └── WaitForConnThread.c ├── BOIT Shared ├── BOIT Shared.vcxitems ├── BOIT Shared.vcxitems.filters ├── BOITEventType.h ├── BOITInfoMaxDef.h ├── EstablishConn.c ├── EstablishConn.h ├── ObjectName.h └── SharedMemStruct.h ├── BOIT Version ├── BOIT Version.vcxitems ├── BOIT Version.vcxitems.filters ├── BOITVersion.h └── Settings.h ├── BOIT.sln ├── LICENSE ├── README.md ├── StringProcess ├── CommandProcess.c ├── CommandProcess.h ├── EncodeConvert.c ├── EncodeConvert.h ├── StringProcess.vcxitems ├── StringProcess.vcxitems.filters ├── URIEncode.c └── URIEncode.h └── cJSON ├── cJSON.c ├── cJSON.h └── cJSON.vcxitems /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/.gitignore -------------------------------------------------------------------------------- /BOIT DLL/AppLifeRoutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT DLL/AppLifeRoutine.c -------------------------------------------------------------------------------- /BOIT DLL/BOIT DLL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT DLL/BOIT DLL.vcxproj -------------------------------------------------------------------------------- /BOIT DLL/BOIT DLL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT DLL/BOIT DLL.vcxproj.filters -------------------------------------------------------------------------------- /BOIT DLL/Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT DLL/Base64.h -------------------------------------------------------------------------------- /BOIT DLL/CQAPITransfer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT DLL/CQAPITransfer.c -------------------------------------------------------------------------------- /BOIT DLL/CQAPITransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT DLL/CQAPITransfer.h -------------------------------------------------------------------------------- /BOIT DLL/CQLog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT DLL/CQLog.c -------------------------------------------------------------------------------- /BOIT DLL/CQP.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT DLL/CQP.lib -------------------------------------------------------------------------------- /BOIT DLL/CoolQDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT DLL/CoolQDef.h -------------------------------------------------------------------------------- /BOIT DLL/CoolQ_API_Entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT DLL/CoolQ_API_Entry.c -------------------------------------------------------------------------------- /BOIT DLL/CoolQ_State.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT DLL/CoolQ_State.h -------------------------------------------------------------------------------- /BOIT DLL/DllMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT DLL/DllMain.c -------------------------------------------------------------------------------- /BOIT DLL/Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT DLL/Global.h -------------------------------------------------------------------------------- /BOIT DLL/SendEventHandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT DLL/SendEventHandler.c -------------------------------------------------------------------------------- /BOIT DLL/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT DLL/app.json -------------------------------------------------------------------------------- /BOIT InfoStruct/BOIT InfoStruct.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT InfoStruct/BOIT InfoStruct.vcxitems -------------------------------------------------------------------------------- /BOIT InfoStruct/BOIT InfoStruct.vcxitems.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT InfoStruct/BOIT InfoStruct.vcxitems.filters -------------------------------------------------------------------------------- /BOIT Server/APITransfer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/APITransfer.c -------------------------------------------------------------------------------- /BOIT Server/APITransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/APITransfer.h -------------------------------------------------------------------------------- /BOIT Server/AsyncINet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/AsyncINet.c -------------------------------------------------------------------------------- /BOIT Server/AsyncINet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/AsyncINet.h -------------------------------------------------------------------------------- /BOIT Server/BOIT Server.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/BOIT Server.vcxproj -------------------------------------------------------------------------------- /BOIT Server/BOIT Server.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/BOIT Server.vcxproj.filters -------------------------------------------------------------------------------- /BOIT Server/Base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/Base64.c -------------------------------------------------------------------------------- /BOIT Server/CommandEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/CommandEvent.h -------------------------------------------------------------------------------- /BOIT Server/CommandManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/CommandManager.c -------------------------------------------------------------------------------- /BOIT Server/CommandManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/CommandManager.h -------------------------------------------------------------------------------- /BOIT Server/Command_about.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/Command_about.c -------------------------------------------------------------------------------- /BOIT Server/Command_admin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/Command_admin.c -------------------------------------------------------------------------------- /BOIT Server/Command_boast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/Command_boast.c -------------------------------------------------------------------------------- /BOIT Server/Command_cat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/Command_cat.c -------------------------------------------------------------------------------- /BOIT Server/Command_codeforces.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/Command_codeforces.c -------------------------------------------------------------------------------- /BOIT Server/Command_help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/Command_help.c -------------------------------------------------------------------------------- /BOIT Server/Command_luogu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/Command_luogu.c -------------------------------------------------------------------------------- /BOIT Server/Command_oier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/Command_oier.c -------------------------------------------------------------------------------- /BOIT Server/Command_q_and_a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/Command_q_and_a.c -------------------------------------------------------------------------------- /BOIT Server/Command_qwq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/Command_qwq.c -------------------------------------------------------------------------------- /BOIT Server/Command_run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/Command_run.c -------------------------------------------------------------------------------- /BOIT Server/Command_run.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/Command_run.h -------------------------------------------------------------------------------- /BOIT Server/Command_runcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/Command_runcode.c -------------------------------------------------------------------------------- /BOIT Server/Command_savecode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/Command_savecode.c -------------------------------------------------------------------------------- /BOIT Server/Command_sponsor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/Command_sponsor.c -------------------------------------------------------------------------------- /BOIT Server/Command_stop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/Command_stop.c -------------------------------------------------------------------------------- /BOIT Server/Command_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/Command_version.c -------------------------------------------------------------------------------- /BOIT Server/Corpus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/Corpus.c -------------------------------------------------------------------------------- /BOIT Server/Corpus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/Corpus.h -------------------------------------------------------------------------------- /BOIT Server/DirManagement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/DirManagement.c -------------------------------------------------------------------------------- /BOIT Server/DirManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/DirManagement.h -------------------------------------------------------------------------------- /BOIT Server/Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/Global.h -------------------------------------------------------------------------------- /BOIT Server/HandleBOITCode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/HandleBOITCode.c -------------------------------------------------------------------------------- /BOIT Server/HandleBOITCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/HandleBOITCode.h -------------------------------------------------------------------------------- /BOIT Server/InlineCommand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/InlineCommand.c -------------------------------------------------------------------------------- /BOIT Server/InlineCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/InlineCommand.h -------------------------------------------------------------------------------- /BOIT Server/MessageReply.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/MessageReply.c -------------------------------------------------------------------------------- /BOIT Server/MessageWatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/MessageWatch.c -------------------------------------------------------------------------------- /BOIT Server/MessageWatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/MessageWatch.h -------------------------------------------------------------------------------- /BOIT Server/PerCommandData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/PerCommandData.c -------------------------------------------------------------------------------- /BOIT Server/PerGroupData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/PerGroupData.c -------------------------------------------------------------------------------- /BOIT Server/PerUserData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/PerUserData.c -------------------------------------------------------------------------------- /BOIT Server/Pic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/Pic.cpp -------------------------------------------------------------------------------- /BOIT Server/Pic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/Pic.h -------------------------------------------------------------------------------- /BOIT Server/RecvEventHandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/RecvEventHandler.c -------------------------------------------------------------------------------- /BOIT Server/RecvEventHandler.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | int StartRecvEventHandler(); 4 | -------------------------------------------------------------------------------- /BOIT Server/RegisterRW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/RegisterRW.c -------------------------------------------------------------------------------- /BOIT Server/RegisterRW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/RegisterRW.h -------------------------------------------------------------------------------- /BOIT Server/RemoveCQEscapeChar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/RemoveCQEscapeChar.c -------------------------------------------------------------------------------- /BOIT Server/RemoveCQEscapeChar.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | 4 | BOOL RemoveCQEscapeChar(WCHAR* Text); -------------------------------------------------------------------------------- /BOIT Server/SendEventDispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/SendEventDispatch.c -------------------------------------------------------------------------------- /BOIT Server/SendEventDispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/SendEventDispatch.h -------------------------------------------------------------------------------- /BOIT Server/ServerMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/ServerMain.c -------------------------------------------------------------------------------- /BOIT Server/ServerState.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/ServerState.c -------------------------------------------------------------------------------- /BOIT Server/SessionManage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/SessionManage.c -------------------------------------------------------------------------------- /BOIT Server/SessionManage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/SessionManage.h -------------------------------------------------------------------------------- /BOIT Server/SimpleSandbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/SimpleSandbox.c -------------------------------------------------------------------------------- /BOIT Server/SimpleSandbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/SimpleSandbox.h -------------------------------------------------------------------------------- /BOIT Server/TokenManage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/TokenManage.c -------------------------------------------------------------------------------- /BOIT Server/VBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/VBuffer.c -------------------------------------------------------------------------------- /BOIT Server/VBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/VBuffer.h -------------------------------------------------------------------------------- /BOIT Server/WaitForConnThread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Server/WaitForConnThread.c -------------------------------------------------------------------------------- /BOIT Shared/BOIT Shared.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Shared/BOIT Shared.vcxitems -------------------------------------------------------------------------------- /BOIT Shared/BOIT Shared.vcxitems.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Shared/BOIT Shared.vcxitems.filters -------------------------------------------------------------------------------- /BOIT Shared/BOITEventType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Shared/BOITEventType.h -------------------------------------------------------------------------------- /BOIT Shared/BOITInfoMaxDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Shared/BOITInfoMaxDef.h -------------------------------------------------------------------------------- /BOIT Shared/EstablishConn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Shared/EstablishConn.c -------------------------------------------------------------------------------- /BOIT Shared/EstablishConn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Shared/EstablishConn.h -------------------------------------------------------------------------------- /BOIT Shared/ObjectName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Shared/ObjectName.h -------------------------------------------------------------------------------- /BOIT Shared/SharedMemStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Shared/SharedMemStruct.h -------------------------------------------------------------------------------- /BOIT Version/BOIT Version.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Version/BOIT Version.vcxitems -------------------------------------------------------------------------------- /BOIT Version/BOIT Version.vcxitems.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Version/BOIT Version.vcxitems.filters -------------------------------------------------------------------------------- /BOIT Version/BOITVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Version/BOITVersion.h -------------------------------------------------------------------------------- /BOIT Version/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT Version/Settings.h -------------------------------------------------------------------------------- /BOIT.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/BOIT.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/README.md -------------------------------------------------------------------------------- /StringProcess/CommandProcess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/StringProcess/CommandProcess.c -------------------------------------------------------------------------------- /StringProcess/CommandProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/StringProcess/CommandProcess.h -------------------------------------------------------------------------------- /StringProcess/EncodeConvert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/StringProcess/EncodeConvert.c -------------------------------------------------------------------------------- /StringProcess/EncodeConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/StringProcess/EncodeConvert.h -------------------------------------------------------------------------------- /StringProcess/StringProcess.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/StringProcess/StringProcess.vcxitems -------------------------------------------------------------------------------- /StringProcess/StringProcess.vcxitems.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/StringProcess/StringProcess.vcxitems.filters -------------------------------------------------------------------------------- /StringProcess/URIEncode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/StringProcess/URIEncode.c -------------------------------------------------------------------------------- /StringProcess/URIEncode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/StringProcess/URIEncode.h -------------------------------------------------------------------------------- /cJSON/cJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/cJSON/cJSON.c -------------------------------------------------------------------------------- /cJSON/cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/cJSON/cJSON.h -------------------------------------------------------------------------------- /cJSON/cJSON.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelbin/BOIT/HEAD/cJSON/cJSON.vcxitems --------------------------------------------------------------------------------