Files
libstrophe-gh/src/util.h
Dariusz Dwornikowski 71f75b2e2e Closes #31
2014-10-23 08:44:52 +02:00

26 lines
551 B
C

/* util.h
** strophe XMPP client library -- various utility functions
**
** Copyright (C) 2005-2009 Collecta, Inc.
**
** This software is provided AS-IS with no warranty, either express
** or implied.
**
** This program is dual licensed under the MIT and GPLv3 licenses.
*/
/** @file
* Internally used utility functions.
*/
#ifndef __LIBSTROPHE_UTIL_H__
#define __LIBSTROPHE_UTIL_H__
#include "ostypes.h"
/* timing functions */
uint64_t time_stamp(void);
uint64_t time_elapsed(uint64_t t1, uint64_t t2);
#endif /* __LIBSTROPHE_UTIL_H__ */