endian.c

来自「支持各种栅格图像和矢量图像读取的库」· C语言 代码 · 共 21 行

C
21
字号
#include "csf.h"#include "csfimpl.h"/* test if map is in native endian mode * test if map is in native endian mode * returns nonzero if native, 0 if not native */int    MnativeEndian(const MAP *map){	return map->main.byteOrder == ORD_OK;}/* test if the Rput functions alter their cell buffers * test if the Rput functions alter their cell buffers * returns nonzero if they do not alter, 0 if they alter their buffers */int    RputDoNotChangeValues(const MAP *map){	return MnativeEndian(map) && map->appCR == map->raster.cellRepr;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?