09 2020 档案

摘要:学习参考以下链接: https://blog.csdn.net/lf12345678910/article/details/49619177 https://www.cnblogs.com/xiaomanon/p/4210016.html 阅读全文
posted @ 2020-09-16 15:58 唯一诺 阅读(190) 评论(0) 推荐(0)
摘要:1.IPV4套接字地址(#include <netinet/in.h>) struct in_addr { in_addr_t s_addr; /* 32-bits IPV4 address network byte ordered <netinet/in.h> */ }; struct socka 阅读全文
posted @ 2020-09-08 08:16 唯一诺 阅读(198) 评论(0) 推荐(0)
摘要:main.cpp #include <stdio.h> #include "g_test.h" extern bool testFunc(); bool __attribute__((weak))testFunc() { warnf("this is weak api\n"); return fal 阅读全文
posted @ 2020-09-02 15:26 唯一诺 阅读(1626) 评论(0) 推荐(0)
摘要:1.文章链接如下,属于转载,如有问题请联系我删除: https://blog.csdn.net/xxxxxx91116/article/details/7446455?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMa 阅读全文
posted @ 2020-09-02 15:24 唯一诺 阅读(463) 评论(0) 推荐(0)
摘要:结构体 typedef struct Time { unsigned int second :6; // 秒 0-59 unsigned int minute :6; // 分 0-59 unsigned int hour :5; // 时 0-23 unsigned int day :5; // 阅读全文
posted @ 2020-09-02 10:47 唯一诺 阅读(1300) 评论(0) 推荐(0)