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
|
2007-10-23 12:48:09 +02:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
1997-11-18 15:06:00 +01:00
|
|
|
* (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
|
2007-10-23 12:48:09 +02:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
1997-11-18 15:06:00 +01:00
|
|
|
*/
|
|
|
|
|
2002-06-29 15:31:13 +02:00
|
|
|
#ifndef G10_TYPES_H
|
|
|
|
#define G10_TYPES_H
|
1997-11-18 15:06:00 +01:00
|
|
|
|
2003-05-14 06:32:32 +02:00
|
|
|
#ifdef HAVE_INTTYPES_H
|
2012-11-06 17:44:11 +01:00
|
|
|
# include <inttypes.h> /* For uint64_t */
|
2003-02-12 05:45:51 +01:00
|
|
|
#endif
|
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
|
2012-11-06 17:44:11 +01:00
|
|
|
# undef SIZEOF_UNSIGNED_SHORT
|
|
|
|
# define SIZEOF_UNSIGNED_SHORT 2
|
1998-05-13 19:53:36 +02:00
|
|
|
#endif
|
|
|
|
#if !SIZEOF_UNSIGNED_INT
|
2012-11-06 17:44:11 +01:00
|
|
|
# undef SIZEOF_UNSIGNED_INT
|
|
|
|
# define SIZEOF_UNSIGNED_INT 4
|
1998-05-13 19:53:36 +02:00
|
|
|
#endif
|
|
|
|
#if !SIZEOF_UNSIGNED_LONG
|
2012-11-06 17:44:11 +01:00
|
|
|
# undef SIZEOF_UNSIGNED_LONG
|
|
|
|
# define SIZEOF_UNSIGNED_LONG 4
|
1998-05-13 19:53:36 +02:00
|
|
|
#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
|
2012-11-06 17:44:11 +01:00
|
|
|
# undef byte /* maybe there is a macro with this name */
|
|
|
|
# ifndef __riscos__
|
2003-05-24 18:40:46 +02:00
|
|
|
typedef unsigned char byte;
|
2012-11-06 17:44:11 +01:00
|
|
|
# else
|
2003-05-24 18:40:46 +02:00
|
|
|
/* 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;
|
2012-11-06 17:44:11 +01:00
|
|
|
# endif
|
|
|
|
# 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
|
2012-11-06 17:44:11 +01:00
|
|
|
# undef ushort /* maybe there is a macro with this name */
|
2003-05-24 18:40:46 +02:00
|
|
|
typedef unsigned short ushort;
|
2012-11-06 17:44:11 +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
|
2012-11-06 17:44:11 +01:00
|
|
|
# undef ulong /* maybe there is a macro with this name */
|
2003-05-24 18:40:46 +02:00
|
|
|
typedef unsigned long ulong;
|
2012-11-06 17:44:11 +01:00
|
|
|
# define HAVE_ULONG_TYPEDEF
|
1997-11-18 15:06:00 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_U16_TYPEDEF
|
2012-11-06 17:44:11 +01:00
|
|
|
# undef u16 /* maybe there is a macro with this name */
|
|
|
|
# if SIZEOF_UNSIGNED_INT == 2
|
2003-05-24 18:40:46 +02:00
|
|
|
typedef unsigned int u16;
|
2012-11-06 17:44:11 +01:00
|
|
|
# elif SIZEOF_UNSIGNED_SHORT == 2
|
2003-05-24 18:40:46 +02:00
|
|
|
typedef unsigned short u16;
|
2012-11-06 17:44:11 +01:00
|
|
|
# else
|
|
|
|
# error no typedef for u16
|
|
|
|
# endif
|
|
|
|
# define HAVE_U16_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_U32_TYPEDEF
|
2012-11-06 17:44:11 +01:00
|
|
|
# undef u32 /* maybe there is a macro with this name */
|
|
|
|
# if SIZEOF_UNSIGNED_INT == 4
|
2003-05-24 18:40:46 +02:00
|
|
|
typedef unsigned int u32;
|
2012-11-06 17:44:11 +01:00
|
|
|
# elif SIZEOF_UNSIGNED_LONG == 4
|
2003-05-24 18:40:46 +02:00
|
|
|
typedef unsigned long u32;
|
2012-11-06 17:44:11 +01:00
|
|
|
# else
|
|
|
|
# error no typedef for u32
|
|
|
|
# endif
|
|
|
|
# define HAVE_U32_TYPEDEF
|
1997-11-18 15:06:00 +01:00
|
|
|
#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
|
2012-11-06 17:44:11 +01:00
|
|
|
# undef u64 /* maybe there is a macro with this name */
|
|
|
|
# if SIZEOF_UINT64_T == 8
|
2003-07-10 14:13:53 +02:00
|
|
|
typedef uint64_t u64;
|
2012-10-27 19:56:11 +02:00
|
|
|
# ifdef UINT64_C
|
2012-11-06 17:44:11 +01:00
|
|
|
# define U64_C(c) (UINT64_C(c))
|
2012-10-27 19:56:11 +02:00
|
|
|
# else
|
|
|
|
/* make a best guess, could happen with UNIX98 <inttypes.h> */
|
|
|
|
# define U64_C(c) (c)
|
|
|
|
# endif
|
|
|
|
# define HAVE_U64_TYPEDEF
|
|
|
|
#elif SIZEOF_UNSIGNED_INT == 8
|
2003-05-24 18:40:46 +02:00
|
|
|
typedef unsigned int u64;
|
2012-11-06 17:44:11 +01:00
|
|
|
# define U64_C(c) (c ## U)
|
|
|
|
# define HAVE_U64_TYPEDEF
|
|
|
|
# elif SIZEOF_UNSIGNED_LONG == 8
|
2003-05-24 18:40:46 +02:00
|
|
|
typedef unsigned long u64;
|
2012-11-06 17:44:11 +01:00
|
|
|
# define U64_C(c) (c ## UL)
|
|
|
|
# define HAVE_U64_TYPEDEF
|
2003-05-24 18:40:46 +02:00
|
|
|
#elif SIZEOF_UNSIGNED_LONG_LONG == 8
|
|
|
|
typedef unsigned long long u64;
|
2012-11-06 17:44:11 +01:00
|
|
|
# define U64_C(c) (c ## ULL)
|
|
|
|
# define HAVE_U64_TYPEDEF
|
|
|
|
# endif
|
1998-04-30 16:06:01 +02:00
|
|
|
#endif
|
|
|
|
|
1999-02-24 11:12:32 +01:00
|
|
|
typedef union {
|
|
|
|
int a;
|
|
|
|
short b;
|
|
|
|
char c[1];
|
|
|
|
long d;
|
2003-05-24 18:40:46 +02:00
|
|
|
#ifdef HAVE_U64_TYPEDEF
|
1999-02-24 11:12:32 +01:00
|
|
|
u64 e;
|
2003-05-24 18:40:46 +02:00
|
|
|
#endif
|
1999-02-24 11:12:32 +01:00
|
|
|
float f;
|
|
|
|
double g;
|
|
|
|
} PROPERLY_ALIGNED_TYPE;
|
1997-12-19 12:41:47 +01:00
|
|
|
|
2009-07-21 16:30:13 +02:00
|
|
|
struct string_list {
|
1997-12-19 12:41:47 +01:00
|
|
|
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];
|
2009-07-21 16:30:13 +02:00
|
|
|
};
|
|
|
|
typedef struct string_list *STRLIST;
|
|
|
|
typedef struct string_list *strlist_t;
|
1997-12-19 12:41:47 +01:00
|
|
|
|
2014-08-20 13:25:17 +02:00
|
|
|
|
|
|
|
|
|
|
|
#if __GNUC__ > 2 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 5 )
|
|
|
|
# define GNUPG_GCC_ATTR_UNUSED __attribute__ ((unused))
|
|
|
|
#else
|
|
|
|
# define GNUPG_GCC_ATTR_UNUSED
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2002-06-29 15:31:13 +02:00
|
|
|
#endif /*G10_TYPES_H*/
|