1997-11-18 15:06:00 +01:00
|
|
|
/* types.h - some common typedefs
|
2002-06-29 15:31:13 +02:00
|
|
|
* Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
|
1997-11-18 15:06:00 +01:00
|
|
|
*
|
1998-06-16 17:13:28 +02:00
|
|
|
* This file is part of GNUPG.
|
1997-11-18 15:06:00 +01:00
|
|
|
*
|
1998-06-16 17:13:28 +02:00
|
|
|
* GNUPG is free software; you can redistribute it and/or modify
|
1997-11-18 15:06:00 +01:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
1998-06-16 17:13:28 +02:00
|
|
|
* GNUPG is distributed in the hope that it will be useful,
|
1997-11-18 15:06:00 +01:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
|
|
*/
|
|
|
|
|
2002-06-29 15:31:13 +02:00
|
|
|
#ifndef G10_TYPES_H
|
|
|
|
#define G10_TYPES_H
|
1997-11-18 15:06:00 +01:00
|
|
|
|
1998-05-13 19:53:36 +02:00
|
|
|
|
|
|
|
/* The AC_CHECK_SIZEOF() in configure fails for some machines.
|
|
|
|
* we provide some fallback values here */
|
|
|
|
#if !SIZEOF_UNSIGNED_SHORT
|
|
|
|
#undef SIZEOF_UNSIGNED_SHORT
|
|
|
|
#define SIZEOF_UNSIGNED_SHORT 2
|
|
|
|
#endif
|
|
|
|
#if !SIZEOF_UNSIGNED_INT
|
|
|
|
#undef SIZEOF_UNSIGNED_INT
|
|
|
|
#define SIZEOF_UNSIGNED_INT 4
|
|
|
|
#endif
|
|
|
|
#if !SIZEOF_UNSIGNED_LONG
|
|
|
|
#undef SIZEOF_UNSIGNED_LONG
|
|
|
|
#define SIZEOF_UNSIGNED_LONG 4
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
1997-12-23 18:30:18 +01:00
|
|
|
#include <sys/types.h>
|
|
|
|
|
1997-11-18 15:06:00 +01:00
|
|
|
|
1997-12-19 12:41:47 +01:00
|
|
|
#ifndef HAVE_BYTE_TYPEDEF
|
1997-12-23 18:30:18 +01:00
|
|
|
#undef byte /* maybe there is a macro with this name */
|
2002-06-29 15:31:13 +02:00
|
|
|
#ifndef __riscos__
|
|
|
|
typedef unsigned char byte;
|
|
|
|
#else
|
|
|
|
/* Norcroft treats char = unsigned char as legal assignment
|
|
|
|
but char* = unsigned char* as illegal assignment
|
|
|
|
and the same applies to the signed variants as well */
|
|
|
|
typedef char byte;
|
|
|
|
#endif
|
1997-12-19 12:41:47 +01:00
|
|
|
#define HAVE_BYTE_TYPEDEF
|
1997-11-18 15:06:00 +01:00
|
|
|
#endif
|
1997-12-19 12:41:47 +01:00
|
|
|
|
1997-11-18 15:06:00 +01:00
|
|
|
#ifndef HAVE_USHORT_TYPEDEF
|
1997-12-23 18:30:18 +01:00
|
|
|
#undef ushort /* maybe there is a macro with this name */
|
1997-11-18 15:06:00 +01:00
|
|
|
typedef unsigned short ushort;
|
1997-12-19 12:41:47 +01:00
|
|
|
#define HAVE_USHORT_TYPEDEF
|
1997-11-18 15:06:00 +01:00
|
|
|
#endif
|
|
|
|
|
1997-12-19 12:41:47 +01:00
|
|
|
#ifndef HAVE_ULONG_TYPEDEF
|
1997-12-23 18:30:18 +01:00
|
|
|
#undef ulong /* maybe there is a macro with this name */
|
1997-12-19 12:41:47 +01:00
|
|
|
typedef unsigned long ulong;
|
|
|
|
#define HAVE_ULONG_TYPEDEF
|
1997-11-18 15:06:00 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_U16_TYPEDEF
|
1997-12-23 18:30:18 +01:00
|
|
|
#undef u16 /* maybe there is a macro with this name */
|
1998-01-06 10:17:55 +01:00
|
|
|
#if SIZEOF_UNSIGNED_INT == 2
|
1997-12-19 12:41:47 +01:00
|
|
|
typedef unsigned int u16;
|
1998-01-06 10:17:55 +01:00
|
|
|
#elif SIZEOF_UNSIGNED_SHORT == 2
|
1997-12-19 12:41:47 +01:00
|
|
|
typedef unsigned short u16;
|
|
|
|
#else
|
|
|
|
#error no typedef for u16
|
|
|
|
#endif
|
1997-11-18 15:06:00 +01:00
|
|
|
#define HAVE_U16_TYPEDEF
|
|
|
|
#endif
|
1997-12-19 12:41:47 +01:00
|
|
|
|
1997-11-18 15:06:00 +01:00
|
|
|
#ifndef HAVE_U32_TYPEDEF
|
1997-12-23 18:30:18 +01:00
|
|
|
#undef u32 /* maybe there is a macro with this name */
|
1998-01-06 10:17:55 +01:00
|
|
|
#if SIZEOF_UNSIGNED_INT == 4
|
1997-12-19 12:41:47 +01:00
|
|
|
typedef unsigned int u32;
|
1998-02-03 13:09:20 +01:00
|
|
|
#elif SIZEOF_UNSIGNED_LONG == 4
|
|
|
|
typedef unsigned long u32;
|
1997-12-19 12:41:47 +01:00
|
|
|
#else
|
|
|
|
#error no typedef for u32
|
|
|
|
#endif
|
1997-11-18 15:06:00 +01:00
|
|
|
#define HAVE_U32_TYPEDEF
|
|
|
|
#endif
|
|
|
|
|
2000-07-14 19:34:53 +02:00
|
|
|
/****************
|
|
|
|
* Warning: Some systems segfault when this u64 typedef and
|
|
|
|
* the dummy code in cipher/md.c is not available. Examples are
|
|
|
|
* Solaris and IRIX.
|
|
|
|
*/
|
1998-04-30 16:06:01 +02:00
|
|
|
#ifndef HAVE_U64_TYPEDEF
|
|
|
|
#undef u64 /* maybe there is a macro with this name */
|
|
|
|
#if SIZEOF_UNSIGNED_INT == 8
|
|
|
|
typedef unsigned int u64;
|
|
|
|
#define HAVE_U64_TYPEDEF
|
|
|
|
#elif SIZEOF_UNSIGNED_LONG == 8
|
|
|
|
typedef unsigned long u64;
|
|
|
|
#define HAVE_U64_TYPEDEF
|
2000-07-14 19:34:53 +02:00
|
|
|
#elif SIZEOF_UNSIGNED_LONG_LONG == 8
|
1998-04-30 16:06:01 +02:00
|
|
|
typedef unsigned long long u64;
|
|
|
|
#define HAVE_U64_TYPEDEF
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
1999-02-24 11:12:32 +01:00
|
|
|
typedef union {
|
|
|
|
int a;
|
|
|
|
short b;
|
|
|
|
char c[1];
|
|
|
|
long d;
|
|
|
|
#ifdef HAVE_U64_TYPEDEF
|
|
|
|
u64 e;
|
|
|
|
#endif
|
|
|
|
float f;
|
|
|
|
double g;
|
|
|
|
} PROPERLY_ALIGNED_TYPE;
|
1997-12-19 12:41:47 +01:00
|
|
|
|
|
|
|
typedef struct string_list {
|
|
|
|
struct string_list *next;
|
1999-02-16 14:16:33 +01:00
|
|
|
unsigned int flags;
|
1997-12-19 12:41:47 +01:00
|
|
|
char d[1];
|
|
|
|
} *STRLIST;
|
|
|
|
|
|
|
|
|
2002-06-29 15:31:13 +02:00
|
|
|
#endif /*G10_TYPES_H*/
|