代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
C
】
判断大端小端
作者:
hunanldc
/ 发布于
2013/10/24
/
591
/* * We don't handle PDP-endian or similar orders: if a short is big-endian, * so must int and long be big-endian for us to generate the IS_BIG_ENDIAN * #define and the IS_LITTLE_ENDIAN #undef. */ { int big_endian = 0, little_endian = 0, ntests = 0; if (sizeof(short) == 2) { /* force |volatile| here to get rid of any compiler optimisations * (var in register etc.) which may be appiled to |auto| vars - * even those in |union|s... * (|static| is used to get the same functionality for compilers * which do not honor |volatile|...). */ volatile static union { short i; char c[2]; } u; u.i = 0x0102; big_endian += (u.c[0] == 0x01 && u.c[1] == 0x02); little_endian += (u.c[0] == 0x02 && u.c[1] == 0x01); ntests++; } if (sizeof(int) == 4) { /* force |volatile| here ... */ volatile static union { int i; char c[4]; } u; u.i = 0x01020304; big_endian += (u.c[0] == 0x01 && u.c[1] == 0x02 && u.c[2] == 0x03 && u.c[3] == 0x04); little_endian += (u.c[0] == 0x04 && u.c[1] == 0x03 && u.c[2] == 0x02 && u.c[3] == 0x01); ntests++; } if (sizeof(long) == 8) { /* force |volatile| here ... */ volatile static union { long i; char c[8]; } u; /* * Write this as portably as possible: avoid 0x0102030405060708L * and <<= 32. */ u.i = 0x01020304; u.i <<= 16, u.i <<= 16; u.i |= 0x05060708; big_endian += (u.c[0] == 0x01 && u.c[1] == 0x02 && u.c[2] == 0x03 && u.c[3] == 0x04 && u.c[4] == 0x05 && u.c[5] == 0x06 && u.c[6] == 0x07 && u.c[7] == 0x08); little_endian += (u.c[0] == 0x08 && u.c[1] == 0x07 && u.c[2] == 0x06 && u.c[3] == 0x05 && u.c[4] == 0x04 && u.c[5] == 0x03 && u.c[6] == 0x02 && u.c[7] == 0x01); ntests++; } if (big_endian && big_endian == ntests) { printf("#undef IS_LITTLE_ENDIAN\n"); printf("#define IS_BIG_ENDIAN 1\n\n"); } else if (little_endian && little_endian == ntests) { printf("#define IS_LITTLE_ENDIAN 1\n"); printf("#undef IS_BIG_ENDIAN\n\n"); } else { fprintf(stderr, "%s: unknown byte order" "(big_endian=%d, little_endian=%d, ntests=%d)!\n", argv[0], big_endian, little_endian, ntests); return EXIT_FAILURE; } }
试试其它关键字
大端小端
同语言下
.
获取手机通讯录 iOS去除数字以外的所有字符
.
异步加载音乐等资源
.
交通罚单管理系统
.
freemark实现,简单的替换
.
计算斐波那契数列
.
base64解码 包括解码长度
.
图像显示
.
冒泡排序
.
输入十进制数,输出指定进制
.
链式栈
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
hunanldc
贡献的其它代码
(
1
)
.
判断大端小端
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3