大小端字节序互转程序

手头一个程序是大端字节序的,高字节和低字节全部颠倒,需要转成小端序,用下面这个程序转了一下,希望对有同样需求的有帮助

PS:仅适用于全部是高字节和低字节颠倒的二进制文件,使用前请分析是否适合

 

#include <stdio.h>
#include <errno.h>

#define BUFSIZE 16

int main(int argc, char* argv[])
{
   FILE *infp,*outfp;
   int i,cnt;
   char tmp;
   char buf[BUFSIZE];

   if(argc < 3)
      perror("usage:command:input_file output_file/n");
   if((infp = fopen(argv[1], "rb")) == NULL)
   {
      perror("open input error!/n");
   }
   if((outfp = fopen(argv[2], "wb+")) == NULL)
   {
      perror("open output error!/n");
   }

   while((cnt = fread(buf, 1,  BUFSIZE, infp)) == BUFSIZE)
   {
      for(i=BUFSIZE - 1; i>0; i-=2)
      {
         tmp=buf[i];
         buf[i]=buf[i-1];
         buf[i-1]=tmp;
      }
      if(fwrite(buf, 1, BUFSIZE, outfp) < BUFSIZE)
         perror("write error!/n");
   }
   if(cnt > 0)
   {
        if(cnt%2 == 0)
           i=cnt-1;
        else
           i=cnt-2;
        for(;i>0;i-=2)
        {
         tmp=buf[i];
         buf[i]=buf[i-1];
         buf[i-1]=tmp;
        }
      if(fwrite(buf, 1, cnt, outfp) < cnt)
         perror("write error!/n");
   }
   printf("translation complete!/n");
   fclose(infp);
   fclose(outfp);
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值