遇见YY

导航

 

2020年8月6日

摘要: #include <stdio.h> #define UNUSED_ARG(A) do { A=A; } while(0) void Hello(int key,int value){ printf("key:%d\n",key); } int main(){ Hello(100,200); ret 阅读全文
posted @ 2020-08-06 15:52 一骑红尘妃子笑! 阅读(452) 评论(0) 推荐(0)
 
摘要: #include <stdio.h> #include <stdint.h> #include <openssl/rand.h> #include <stdlib.h> #include <math.h> #include <strings.h> static void turn_random_ti 阅读全文
posted @ 2020-08-06 15:03 一骑红尘妃子笑! 阅读(536) 评论(0) 推荐(0)
 
摘要: void printf_addr_byte(void * addr,uint32_t bytes){ if (!addr){ printf("addr is null!"); exit(0); } if (bytes <= 0){ printf("len <= 0!"); } uint8_t * c 阅读全文
posted @ 2020-08-06 14:31 一骑红尘妃子笑! 阅读(188) 评论(0) 推荐(0)