You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

debug.h 630 B

123456789101112131415161718192021222324
  1. /*
  2. * $Id: debug.h,v 1.5 2006/01/30 23:07:57 mclark Exp $
  3. *
  4. * Copyright (c) 2004, 2005 Metaparadigm Pte. Ltd.
  5. * Michael Clark <michael@metaparadigm.com>
  6. *
  7. * This library is free software; you can redistribute it and/or modify
  8. * it under the terms of the MIT license. See COPYING for details.
  9. *
  10. */
  11. #ifndef _DEBUG_H_
  12. #define _DEBUG_H_
  13. extern void mc_set_debug(int debug);
  14. extern int mc_get_debug();
  15. extern void mc_set_syslog(int syslog);
  16. extern void mc_abort(const char *msg, ...);
  17. extern void mc_debug(const char *msg, ...);
  18. extern void mc_error(const char *msg, ...);
  19. extern void mc_info(const char *msg, ...);
  20. #endif

No Description

Contributors (1)