endian.h
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:4k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*
  2.  * Copyright (c) 1983, 1989, 1993
  3.  * The Regents of the University of California.  All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that the following conditions
  7.  * are met:
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *    notice, this list of conditions and the following disclaimer.
  10.  * 2. Redistributions in binary form must reproduce the above copyright
  11.  *    notice, this list of conditions and the following disclaimer in the
  12.  *    documentation and/or other materials provided with the distribution.
  13.  * 3. All advertising materials mentioning features or use of this software
  14.  *    must display the following acknowledgement:
  15.  * This product includes software developed by the University of
  16.  * California, Berkeley and its contributors.
  17.  * 4. Neither the name of the University nor the names of its contributors
  18.  *    may be used to endorse or promote products derived from this software
  19.  *    without specific prior written permission.
  20.  *
  21.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  22.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  24.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  25.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  27.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  28.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  29.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  30.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31.  * SUCH DAMAGE.
  32.  *
  33.  *      @(#)nameser.h 8.2 (Berkeley) 2/16/94
  34.  * -
  35.  * Portions Copyright (c) 1993 by Digital Equipment Corporation.
  36.  * 
  37.  * Permission to use, copy, modify, and distribute this software for any
  38.  * purpose with or without fee is hereby granted, provided that the above
  39.  * copyright notice and this permission notice appear in all copies, and that
  40.  * the name of Digital Equipment Corporation not be used in advertising or
  41.  * publicity pertaining to distribution of the document or software without
  42.  * specific, written prior permission.
  43.  * 
  44.  * THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
  45.  * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
  46.  * OF MERCHANTABILITY AND FITNESS.   IN NO EVENT SHALL DIGITAL EQUIPMENT
  47.  * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  48.  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  49.  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
  50.  * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  51.  * SOFTWARE.
  52.  * -
  53.  * --Copyright--
  54.  */
  55. #ifndef _ENDIAN_H_
  56. #define _ENDIAN_H_
  57. #ifndef BYTE_ORDER
  58. #define LITTLE_ENDIAN 1234 /* least-significant byte first (vax, pc) */
  59. #define __LITTLE_ENDIAN 1234
  60. #define BIG_ENDIAN 4321 /* most-significant byte first (IBM, net) */
  61. #define __BIG_ENDIAN 4321
  62. #define PDP_ENDIAN 3412 /* LSB first in word, MSW first in long (pdp)*/
  63. #define __PDP_ENDIAN 3412
  64. #if defined(vax) || defined(ns32000) || defined(sun386) || defined(i386) || 
  65.     defined(MIPSEL) || defined(_MIPSEL) || defined(BIT_ZERO_ON_RIGHT) || 
  66.     defined(__alpha__) || defined(__alpha)
  67. #define BYTE_ORDER LITTLE_ENDIAN
  68. #define __BYTE_ORDER LITTLE_ENDIAN
  69. #endif
  70. #if defined(sel) || defined(pyr) || defined(mc68000) || defined(sparc) || 
  71.     defined(is68k) || defined(tahoe) || defined(ibm032) || defined(ibm370) || 
  72.     defined(MIPSEB) || defined(_MIPSEB) || defined(_IBMR2) || 
  73.     defined(apollo) || defined(hp9000) || defined(hp9000s300) || 
  74. defined(hp9000s800) || 
  75.     defined (BIT_ZERO_ON_LEFT)
  76. #define BYTE_ORDER BIG_ENDIAN
  77. #define __BYTE_ORDER BIG_ENDIAN
  78. #endif
  79. #endif /* BYTE_ORDER */
  80. #if !defined(BYTE_ORDER) || (BYTE_ORDER != BIG_ENDIAN 
  81. && BYTE_ORDER != LITTLE_ENDIAN && BYTE_ORDER != PDP_ENDIAN)
  82. /* you must determine what the correct bit order is for
  83.  * your compiler - the next line is an intentional error
  84.  * which will force your compiles to bomb until you fix
  85.  * the above macros.
  86.  */
  87.   #error "Undefined or invalid BYTE_ORDER";
  88. #endif
  89. #endif /* !_ENDIAN_H */