上一页 1 2 3 4 5 6 7 8 ··· 14 下一页
摘要: https://blog.csdn.net/STCNXPARM/article/details/123452517 阅读全文
posted @ 2023-03-09 13:57 墨尔基阿德斯 阅读(26) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/pengfei240/article/details/52912833 阅读全文
posted @ 2023-03-09 12:04 墨尔基阿德斯 阅读(5) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/357803433 目录 收起 编译器一般构成 GCC LLVM 编译器大神 Chris Lattner 横空出世 LLVM2.0 - Clang GCC 和 Clang 对比 GCC、LLVM 和 Clang 如何选择? 总结 - 再探 L 阅读全文
posted @ 2023-03-09 11:55 墨尔基阿德斯 阅读(383) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/83535678 https://zhuanlan.zhihu.com/p/83537599 阅读全文
posted @ 2023-03-09 11:05 墨尔基阿德斯 阅读(3) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/xiaoting451292510/article/details/105847121 阅读全文
posted @ 2023-03-09 11:02 墨尔基阿德斯 阅读(90) 评论(0) 推荐(0) 编辑
摘要: fnmatch(pattern, str, FNM_NOESCAPE) 头文件:https://github.com/gcc-mirror/gcc/blob/master/include/fnmatch.h 源文件:https://github.com/gcc-mirror/gcc/blob/mas 阅读全文
posted @ 2023-03-03 17:08 墨尔基阿德斯 阅读(26) 评论(0) 推荐(0) 编辑
摘要: #define SYS_SET_BIT(x,y) ((x)|=(1<<y)) //将X的第Y位置1 #define SYS_CLR_BIT(x,y) ((x)&=~(1<<y)) //将X的第Y位清0 #define SYS_GET_BIT(x,y) ((x)&(1<<y)) //将X的第Y位清0 阅读全文
posted @ 2023-03-03 09:07 墨尔基阿德斯 阅读(175) 评论(0) 推荐(0) 编辑
摘要: samba、ftp和ssh服务 - 投个小三分 - 博客园 (cnblogs.com) Dokan+SSHFS 文件系统共享心得,代替Samba的理想之选 - 知乎 (zhihu.com) 基于Ubuntu22.04的Samba服务器搭建教程(新手保姆级教程)_ubuntu samba-CSDN博客 阅读全文
posted @ 2023-03-02 14:21 墨尔基阿德斯 阅读(9) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/u010217055/article/details/128957497 https://www.cnblogs.com/god-of-death/p/8017414.html 阅读全文
posted @ 2023-02-27 13:52 墨尔基阿德斯 阅读(264) 评论(0) 推荐(0) 编辑
摘要: 求指针ptr所在的结构体实例的首地址, #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) #define container_of(ptr, type, member) ({ \ const typeof( ((type * 阅读全文
posted @ 2023-02-27 11:47 墨尔基阿德斯 阅读(154) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 14 下一页