macros.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /*
  2. * libdpkg - Debian packaging suite library routines
  3. * macros.h - C language support macros
  4. *
  5. * Copyright © 2008, 2009 Guillem Jover <guillem@debian.org>
  6. *
  7. * This is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as
  9. * published by the Free Software Foundation; either version 2,
  10. * or (at your option) any later version.
  11. *
  12. * This is distributed in the hope that it will be useful, but
  13. * WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. */
  20. #ifndef LIBDPKG_MACROS_H
  21. #define LIBDPKG_MACROS_H
  22. /* Language definitions. */
  23. #if HAVE_C_ATTRIBUTE
  24. #define DPKG_ATTR_UNUSED __attribute__((unused))
  25. #define DPKG_ATTR_CONST __attribute__((const))
  26. #define DPKG_ATTR_NORET __attribute__((noreturn))
  27. #define DPKG_ATTR_PRINTF(n) __attribute__((format(printf, n, n + 1)))
  28. #else
  29. #define DPKG_ATTR_UNUSED
  30. #define DPKG_ATTR_CONST
  31. #define DPKG_ATTR_NORET
  32. #define DPKG_ATTR_PRINTF(n)
  33. #endif
  34. #ifdef __cplusplus
  35. #define DPKG_BEGIN_DECLS extern "C" {
  36. #define DPKG_END_DECLS }
  37. #else
  38. #define DPKG_BEGIN_DECLS
  39. #define DPKG_END_DECLS
  40. #endif
  41. #ifndef sizeof_array
  42. #define sizeof_array(a) (sizeof(a) / sizeof((a)[0]))
  43. #endif
  44. #ifndef min
  45. #define min(a, b) ((a) < (b) ? (a) : (b))
  46. #endif
  47. #ifndef max
  48. #define max(a, b) ((a) > (b) ? (a) : (b))
  49. #endif
  50. #endif /* LIBDPKG_MACROS_H */