资源简介
内部包含本人原创c语言编写的socket服务端程序源码,包含基本的epoll并发、cjson解析及mysql操,里面写有大量注释,可帮助后端小白入门,下载后请阅读redeme使用
代码片段和文件信息
/*
Copyright (c) 2009 Dave Gamble
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. */
#include
#include
#include
#include
#include
#include
#include
#include “cJSON.h“
static const char *ep;
const char *cJSON_GetErrorPtr(void) {return ep;}
static int cJSON_strcasecmp(const char *s1const char *s2)
{
if (!s1) return (s1==s2)?0:1;if (!s2) return 1;
for(; tolower(*s1) == tolower(*s2); ++s1 ++s2) if(*s1 == 0) return 0;
return tolower(*(const unsigned char *)s1) - tolower(*(const unsigned char *)s2);
}
static void *(*cJSON_malloc)(size_t sz) = malloc;
static void (*cJSON_free)(void *ptr) = free;
static char* cJSON_strdup(const char* str)
{
size_t len;
char* copy;
len = strlen(str) + 1;
if (!(copy = (char*)cJSON_malloc(len))) return 0;
memcpy(copystrlen);
return copy;
}
void cJSON_InitHooks(cJSON_Hooks* hooks)
{
if (!hooks) { /* Reset hooks */
cJSON_malloc = malloc;
cJSON_free = free;
return;
}
cJSON_malloc = (hooks->malloc_fn)?hooks->malloc_fn:malloc;
cJSON_free = (hooks->free_fn)?hooks->free_fn:free;
}
/* Internal constructor. */
static cJSON *cJSON_New_Item(void)
{
cJSON* node = (cJSON*)cJSON_malloc(sizeof(cJSON));
if (node) memset(node0sizeof(cJSON));
return node;
}
/* Delete a cJSON structure. */
void cJSON_Delete(cJSON *c)
{
cJSON *next;
while (c)
{
next=c->next;
if (!(c->type&cJSON_IsReference) && c->child) cJSON_Delete(c->child);
if (!(c->type&cJSON_IsReference) && c->valuestring) cJSON_free(c->valuestring);
if (!(c->type&cJSON_StringIsConst) && c->string) cJSON_free(c->string);
cJSON_free(c);
c=next;
}
}
/* Parse the input text to generate a number and populate the result into item. */
static const char *parse_number(cJSON *itemconst char *num)
{
double n=0sign=1scale=0;int subscale=0signsubscale=1;
if (*num==‘-‘) sign=-1num++; /* H
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-10-29 16:18 C语言后台代码\
文件 27791 2018-10-25 15:08 C语言后台代码\cJSON.c
文件 7526 2015-02-13 18:53 C语言后台代码\cJSON.h
文件 1436 2018-10-29 16:19 C语言后台代码\index.html
文件 7624 2018-10-29 16:25 C语言后台代码\main.c
文件 100 2018-10-29 16:22 C语言后台代码\make.sh
文件 445 2018-10-29 16:26 C语言后台代码\readme.txt
- 上一篇:C++家庭财务管理系统
- 下一篇:C++实现的FTP服务器
相关资源
- 基于蚁群算法的机器人路径规划C语言
- C语言动物识别专家系统
- C语言经典编程282例源码+随书光盘
- C语言写的图书馆管理系统
- C语言直接读写DWG文件源代码
- 谭浩强版C语言视频百度云盘连接
- C语言环境下的AES加密算法,支持128位
- JPEG编解码的c语言实现
- C语言实现调度算法源代码-山东大学操
- C语言写的简单均值滤波算法
- 敢死队问题纯C语言编写
- 杂志订阅管理系统c语言代码
- 用C语言写的一个学生选课系统
- 用栈实现十进制转换成二进制(c语言
- 超市管理系统C源代码
- 算法子集树问题的c语言代码
- 灭火机器人c语言代码国赛一等奖
- 灭火机器人代码
- 基于OC语言的学生管理系统实现了增删
- 推箱子游戏用C语言在VC++6.0下编写
- 矩阵求逆c程序
- C语言模拟文件系统
- linux ext2 文件系统模拟 c语言实现
- 数据结构习题集与答案(C语言版严蔚
- C语言解码JPG图片源代码
- 使用光电传感器的测速小车C语言程序
- c语言哈夫曼树课程设计
- 用贪心算法求解哈密顿回路
- 平衡二叉树的c语言实现
- kdtree的源码C语言版
评论
共有 条评论