evutil.h revision 290001
1196155Ssam/*
2196155Ssam * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson
3196155Ssam *
4196155Ssam * Redistribution and use in source and binary forms, with or without
5196155Ssam * modification, are permitted provided that the following conditions
6196155Ssam * are met:
7196155Ssam * 1. Redistributions of source code must retain the above copyright
8196155Ssam *    notice, this list of conditions and the following disclaimer.
9196155Ssam * 2. Redistributions in binary form must reproduce the above copyright
10196155Ssam *    notice, this list of conditions and the following disclaimer in the
11196155Ssam *    documentation and/or other materials provided with the distribution.
12196155Ssam * 3. The name of the author may not be used to endorse or promote products
13196155Ssam *    derived from this software without specific prior written permission.
14196155Ssam *
15196155Ssam * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16196155Ssam * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17196155Ssam * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18196155Ssam * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19196155Ssam * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20196155Ssam * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21196155Ssam * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22196155Ssam * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23196155Ssam * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24196155Ssam * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25196155Ssam */
26196155Ssam#ifndef EVENT1_EVUTIL_H_INCLUDED_
27196155Ssam#define EVENT1_EVUTIL_H_INCLUDED_
28196155Ssam
29196155Ssam/** @file evutil.h
30196155Ssam
31196155Ssam  Utility and compatibility functions for Libevent.
32196155Ssam
33196155Ssam  The <evutil.h> header is deprecated in Libevent 2.0 and later; please
34196155Ssam  use <event2/util.h> instead.
35196155Ssam*/
36196155Ssam
37196155Ssam#include <event2/util.h>
38196155Ssam
39196155Ssam#endif /* EVENT1_EVUTIL_H_INCLUDED_ */
40196155Ssam