随笔分类 -  C/C++

摘要:前言全局说明 原文说明: G729系列语音编码全套完整源码 资源描述 本仓库提供G729及其精简版本(G729A、G729B、G729C、G729D、G729E等)的全套完整源代码。这些源代码是目前(2012年)为止的最新版本,内容全面且更新及时,是语音编码领域的重要资源。 资源特点 全面覆盖:包含 阅读全文
posted @ 2026-04-07 10:48 悟透 阅读(11) 评论(0) 推荐(0)
摘要:前言全局说明 Visual Studio 2013 jsoncpp 0.10.7 库编译 LNK2038 一、说明 环境: Windows 7 旗舰版 Visual Studio 2013 二、错误内容 错误 1 error LNK2038: 检测到“RuntimeLibrary”的不匹配项: 值“ 阅读全文
posted @ 2024-08-19 19:01 悟透 阅读(954) 评论(0) 推荐(0)
摘要:前言全局说明 Visual Studio 2013 jsoncpp 编译 jsoncpp 介绍说明: https://www.cnblogs.com/wutou/p/18367551 一、说明 环境: Windows 7 旗舰版 Visual Studio 2013 二、选择 根据vs2013工具环 阅读全文
posted @ 2024-08-19 16:47 悟透 阅读(140) 评论(0) 推荐(0)
摘要:前言全局说明 Visual Studio 2013 jsoncpp 编译 一、说明 环境: Windows 7 旗舰版 Visual Studio 2013 二、常用的 JSON 解析库有:(ChatGPT) nlohmann/json(一个现代 C++ JSON 库) https://github 阅读全文
posted @ 2024-08-19 16:26 悟透 阅读(239) 评论(0) 推荐(0)
摘要:前言全局说明 一、说明 二、获取文件大小 2.1 方法1 文件名:get_file_size_001.c // file name: // get_file_size_001.c // Data: // 2024/06/26 // Link: // https://www.cnblogs.com/w 阅读全文
posted @ 2024-06-26 13:27 悟透 阅读(411) 评论(0) 推荐(0)
摘要:前言全局说明 c/c++语言函数 stat, fstat, lstat, fstatat - get file status 一、说明 二、函数原型 2.1 #include <sys/types.h> #include <sys/stat.h> #include <unistd.h> int st 阅读全文
posted @ 2024-06-26 12:51 悟透 阅读(259) 评论(0) 推荐(0)
摘要:前言全局说明 C语言 open函数说明 一、说明 二、函数原型 2.1 int open(const char *pathname, int flags); int open(const char *pathname, int flags, mode_t mode); 2.2 文件名: 三、使用示例 阅读全文
posted @ 2024-06-26 11:41 悟透 阅读(1187) 评论(0) 推荐(0)
摘要:前言全局说明 c/c++识别减号参数 -h -c a.json 一、说明 二、参数解析 2.1 识别减号参数 文件名:c_argments.c // file name: // c_argments.c // Data: // 2024/06/26 // Link: // https://www.c 阅读全文
posted @ 2024-06-26 09:58 悟透 阅读(31) 评论(0) 推荐(0)
摘要:全局 gdb 是gnu提供的一个强大的调试工具。 一、gdb 调试 1.启动调试 gdb <可执行文件名> 2.r 命令: 运行程序 3.b 命令: 设置断点 4.c 命令: continu 跳过 5.n 命令: 执行下一步 6.p命令: 打印变量值 7.直接回车: 重复执行上一条命令 二、另一种强 阅读全文
posted @ 2023-09-06 14:03 悟透 阅读(67) 评论(0) 推荐(0)