bedbug.h 900 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /* $Id$ */
  2. #ifndef _BEDBUG_H
  3. #define _BEDBUG_H
  4. #ifndef NULL
  5. #define NULL 0
  6. #endif
  7. #define _USE_PROTOTYPES
  8. #ifndef isblank
  9. #define isblank(c) isspace((int)(c))
  10. #endif
  11. #ifndef __P
  12. #if defined(_USE_PROTOTYPES) && (defined(__STDC__) || defined(__cplusplus))
  13. #define __P(protos) protos /* full-blown ANSI C */
  14. #else
  15. #define __P(protos) () /* traditional C preprocessor */
  16. #endif
  17. #endif
  18. #endif /* _BEDBUG_H */
  19. /*
  20. * Copyright (c) 2001 William L. Pitts
  21. * All rights reserved.
  22. *
  23. * Redistribution and use in source and binary forms are freely
  24. * permitted provided that the above copyright notice and this
  25. * paragraph and the following disclaimer are duplicated in all
  26. * such forms.
  27. *
  28. * This software is provided "AS IS" and without any express or
  29. * implied warranties, including, without limitation, the implied
  30. * warranties of merchantability and fitness for a particular
  31. * purpose.
  32. */