摘要: #include <stdio.h> #include <stdlib.h>#include <malloc.h>#include <math.h>#include <string.h>//除了x的最低有效字节外,其他的位都取补typedef unsigned char *byte_pointer;void show_bytes(byte_pointer start,int len){ int i; for(i=len-1;i>=0;i--) printf("%.2x ",start[i]); printf( 阅读全文
posted @ 2011-07-23 15:15 在云中漫步 阅读(320) 评论(1) 推荐(0) 编辑
摘要: #include <stdio.h> #include <stdlib.h>#include <malloc.h>#include <math.h>#include <string.h>typedef unsigned char *byte_pointer;void show_bytes(byte_pointer start,int len){ int i; for(i=len-1;i>=0;i--) printf("%.2x ",start[i]); printf("\n");}void 阅读全文
posted @ 2011-07-23 11:14 在云中漫步 阅读(212) 评论(0) 推荐(0) 编辑