2
0

s2util.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*
  2. * This file is part of the Sofia-SIP package
  3. *
  4. * Copyright (C) 2009 Nokia Corporation.
  5. *
  6. * Contact: Pekka Pessi <pekka.pessi@nokia.com>
  7. *
  8. * This library is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public License
  10. * as published by the Free Software Foundation; either version 2.1 of
  11. * the License, or (at your option) any later version.
  12. *
  13. * This library is distributed in the hope that it will be useful, but
  14. * WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with this library; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  21. * 02110-1301 USA
  22. *
  23. */
  24. #ifndef S2UTIL_H
  25. /** Defined when <s2util.h> has been included. */
  26. #define S2UTIL_H
  27. /**@internal @file s2util.h
  28. *
  29. * @brief Miscellaneous testing utilities
  30. *
  31. * @author Pekka Pessi <Pekka.Pessi@nokia.com>
  32. */
  33. #include <sofia-sip/su_wait.h>
  34. #include <stdarg.h>
  35. SOFIA_BEGIN_DECLS
  36. void s2_fast_forward(unsigned long seconds, su_root_t *root);
  37. void s2_timed_logger(void *stream, char const *fmt, va_list ap);
  38. SOFIA_END_DECLS
  39. #endif /* S2UTIL_H */