摘要: #include <stdio.h> #include <stdint.h> #include <stdlib.h> void uint32_2_bin(char *buf, uint32_t val ){ uint32_t b = 0x80000000; while(b>0){ if( val&b 阅读全文
posted @ 2024-09-17 13:31 Mojies 阅读(11) 评论(0) 推荐(0) 编辑