macros.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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
  18. * License along with dpkg; if not, write to the Free Software
  19. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20. */
  21. #ifndef DPKG_MACROS_H
  22. #define DPKG_MACROS_H
  23. /* Language definitions. */
  24. #if HAVE_C_ATTRIBUTE
  25. #define DPKG_ATTR_UNUSED __attribute__((unused))
  26. #define DPKG_ATTR_CONST __attribute__((constant))
  27. #define DPKG_ATTR_NORET __attribute__((noreturn))
  28. #define DPKG_ATTR_PRINTF(n) __attribute__((format(printf, n, n + 1)))
  29. #else
  30. #define DPKG_ATTR_UNUSED
  31. #define DPKG_ATTR_CONST
  32. #define DPKG_ATTR_NORET
  33. #define DPKG_ATTR_PRINTF(n)
  34. #endif
  35. #ifdef __cplusplus
  36. #define DPKG_BEGIN_DECLS extern "C" {
  37. #define DPKG_END_DECLS }
  38. #else
  39. #define DPKG_BEGIN_DECLS
  40. #define DPKG_END_DECLS
  41. #endif
  42. #ifndef sizeof_array
  43. #define sizeof_array(a) (sizeof(a) / sizeof((a)[0]))
  44. #endif
  45. #ifndef min
  46. #define min(a, b) ((a) < (b) ? (a) : (b))
  47. #endif
  48. #ifndef max
  49. #define max(a, b) ((a) > (b) ? (a) : (b))
  50. #endif
  51. #endif /* DPKG_MACROS_H */