91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 520KB
    文件類型: .rar
    金幣: 2
    下載: 3 次
    發布日期: 2021-06-06
  • 語言: C/C++
  • 標簽: 飛秋??udp??tcp??cjson??http??

資源簡介

支持文件傳輸,文字聊天,上下線通知,運行程序后,程序顯示天氣預報(http請求)

資源截圖

代碼片段和文件信息

/*
??Copyright?(c)?2009-2017?Dave?Gamble?and?cJSON?contributors

??Permission?is?hereby?granted?free?of?charge?to?any?person?obtaining?a?copy
??of?this?software?and?associated?documentation?files?(the?“Software“)?to?deal
??in?the?Software?without?restriction?including?without?limitation?the?rights
??to?use?copy?modify?merge?publish?distribute?sublicense?and/or?sell
??copies?of?the?Software?and?to?permit?persons?to?whom?the?Software?is
??furnished?to?do?so?subject?to?the?following?conditions:

??The?above?copyright?notice?and?this?permission?notice?shall?be?included?in
??all?copies?or?substantial?portions?of?the?Software.

??THE?SOFTWARE?IS?PROVIDED?“AS?IS“?WITHOUT?WARRANTY?OF?ANY?KIND?EXPRESS?OR
??IMPLIED?INCLUDING?BUT?NOT?LIMITED?TO?THE?WARRANTIES?OF?MERCHANTABILITY
??FITNESS?FOR?A?PARTICULAR?PURPOSE?AND?NONINFRINGEMENT.?IN?NO?EVENT?SHALL?THE
??AUTHORS?OR?COPYRIGHT?HOLDERS?BE?LIABLE?FOR?ANY?CLAIM?DAMAGES?OR?OTHER
??LIABILITY?WHETHER?IN?AN?ACTION?OF?CONTRACT?TORT?OR?OTHERWISE?ARISING?FROM
??OUT?OF?OR?IN?CONNECTION?WITH?THE?SOFTWARE?OR?THE?USE?OR?OTHER?DEALINGS?IN
??THE?SOFTWARE.
*/

/*?cJSON?*/
/*?JSON?parser?in?C.?*/

#ifdef?__GNUC__
#pragma?GCC?visibility?push(default)
#endif

#include?
#include?
#include?
#include?
#include?
#include?
#include?
#include?

#ifdef?__GNUC__
#pragma?GCC?visibility?pop
#endif

#include?“cJSON.h“

/*?define?our?own?boolean?type?*/
#define?true?((cJSON_bool)1)
#define?false?((cJSON_bool)0)

typedef?struct?{
????const?unsigned?char?*json;
????size_t?position;
}?error;
static?error?global_error?=?{?NULL?0?};

CJSON_PUBLIC(const?char?*)?cJSON_GetErrorPtr(void)
{
????return?(const?char*)?(global_error.json?+?global_error.position);
}

/*?This?is?a?safeguard?to?prevent?copy-pasters?from?using?incompatible?C?and?header?files?*/
#if?(CJSON_VERSION_MAJOR?!=?1)?||?(CJSON_VERSION_MINOR?!=?5)?||?(CJSON_VERSION_PATCH?!=?7)
????#error?cJSON.h?and?cJSON.c?have?different?versions.?Make?sure?that?both?have?the?same.
#endif

CJSON_PUBLIC(const?char*)?cJSON_Version(void)
{
????static?char?version[15];
????sprintf(version?“%i.%i.%i“?CJSON_VERSION_MAJOR?CJSON_VERSION_MINOR?CJSON_VERSION_PATCH);

????return?version;
}

/*?Case?insensitive?string?comparison?doesn‘t?consider?two?NULL?pointers?equal?though?*/
static?int?case_insensitive_strcmp(const?unsigned?char?*string1?const?unsigned?char?*string2)
{
????if?((string1?==?NULL)?||?(string2?==?NULL))
????{
????????return?1;
????}

????if?(string1?==?string2)
????{
????????return?0;
????}

????for(;?tolower(*string1)?==?tolower(*string2);?(void)string1++?string2++)
????{
????????if?(*string1?==?‘\0‘)
????????{
????????????return?0;
????????}
????}

????return?tolower(*string1)?-?tolower(*string2);
}

typedef?struct?internal_hooks
{
????void?*(*allocate)(size_t?size);
????void?(*deallocate)(void?*pointer);
????void?*(*reallocate)(void?*pointer?size_t?size);
}?internal_hooks;

static?inter

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----

?????文件??????67416??2018-12-10?19:23??飛秋C語言實現\源碼\cJSON.c

?????文件??????39471??2018-12-10?19:23??飛秋C語言實現\源碼\cJSON_Utils.c

?????文件??????13730??2018-12-10?19:23??飛秋C語言實現\源碼\include\cJSON.h

?????文件???????3814??2018-12-10?19:23??飛秋C語言實現\源碼\include\cJSON_Utils.h

?????文件???????7423??2017-11-10?19:37??飛秋C語言實現\源碼\kernel_list.h

?????文件??????36112??2018-12-10?19:23??飛秋C語言實現\源碼\lib\cJSON.o

?????文件??????41448??2018-12-10?19:23??飛秋C語言實現\源碼\lib\libcjson.so

?????文件??????41448??2018-12-10?19:23??飛秋C語言實現\源碼\lib\libcjson.so.1

?????文件??????41448??2018-12-10?19:23??飛秋C語言實現\源碼\lib\libcjson.so.1.5.7

?????文件??????27680??2018-12-10?19:23??飛秋C語言實現\源碼\lib\libcjson_utils.so

?????文件??????27680??2018-12-10?19:23??飛秋C語言實現\源碼\lib\libcjson_utils.so.1

?????文件??????27680??2018-12-10?19:23??飛秋C語言實現\源碼\lib\libcjson_utils.so.1.5.7

?????文件??????62520??2018-12-10?19:35??飛秋C語言實現\源碼\loin_msg

?????文件??????21769??2018-12-10?19:35??飛秋C語言實現\源碼\loin_msg.c

?????文件?????411791??2018-12-10?20:54??飛秋C語言實現\說明文檔.docx

?????目錄??????????0??2018-12-29?15:32??飛秋C語言實現\源碼\include

?????目錄??????????0??2018-12-29?15:32??飛秋C語言實現\源碼\lib

?????目錄??????????0??2018-12-29?15:32??飛秋C語言實現\源碼

?????目錄??????????0??2018-12-29?15:32??飛秋C語言實現

-----------?---------??----------?-----??----

???????????????871430????????????????????19


評論

共有 條評論