遇见YY

导航

 

2020年10月7日

摘要: #include <stdlib.h> #include <stdint.h> #include <string.h> #include <stdio.h> int main(int argc, char *argv[]) { int buf_size = 1024; uint8_t *buf = 阅读全文
posted @ 2020-10-07 20:54 一骑红尘妃子笑! 阅读(200) 评论(0) 推荐(0)
 
摘要: #include <stdint.h> #include <unistd.h> #include <stdio.h> #include <fcntl.h> int main() { int fdr = open("dm.mp4", O_RDONLY); int fdw = open("cp.mp4" 阅读全文
posted @ 2020-10-07 19:30 一骑红尘妃子笑! 阅读(221) 评论(0) 推荐(0)
 
摘要: // // Created by liu on 2020/10/7. // #include <stdint.h> #include <stdlib.h> #include <string.h> #include <stdio.h>struct Node { int id; int *data; } 阅读全文
posted @ 2020-10-07 11:38 一骑红尘妃子笑! 阅读(277) 评论(0) 推荐(0)
 
摘要: #include <stdint.h> #include <stdlib.h> #include <string.h> #include <stdio.h>#define MIN(a, b) ((a) < (b) ? (a) : (b)) #define MAX(a, b) ((a) > (b) ? 阅读全文
posted @ 2020-10-07 10:48 一骑红尘妃子笑! 阅读(352) 评论(0) 推荐(0)