hexify.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:0k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #include <stdio.h>
  2. void main()
  3. {
  4. int c;
  5. int comma=0;
  6. int count=0;
  7. while((c=getchar())!=EOF)
  8. {
  9. unsigned char x=c;
  10. if(comma)
  11. printf(",");
  12. else
  13. comma=1;
  14. if(count==8)
  15. {
  16. count=0;
  17. printf("n");
  18. }
  19. if(count==0)
  20. printf("t");
  21. printf("0x%02X",c);
  22. count++;
  23. }
  24. if(count)
  25. printf("n");
  26. exit(0);
  27. }