57be9b856ba599f733b79253319e08073044cddf
[awesomized/libmemcached] / libmemcached / util / version.h
1 /* LibMemcached
2 * Copyright (C) 2010 Brian Aker
3 * All rights reserved.
4 *
5 * Use and distribution licensed under the BSD license. See
6 * the COPYING file in the parent directory for full text.
7 *
8 * Summary: connect to all hosts, and make sure they meet a minimum version
9 *
10 */
11
12 #ifndef __LIBMEMCACHED_UTIL_VERSION_H__
13 #define __LIBMEMCACHED_UTIL_VERSION_H__
14
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
18
19 LIBMEMCACHED_API
20 bool libmemcached_util_version_check(memcached_st *memc,
21 uint8_t major_version,
22 uint8_t minor_version,
23 uint8_t micro_version);
24
25 #ifdef __cplusplus
26 }
27 #endif
28
29 #endif /* __LIBMEMCACHED__UTIL_VERSION_H__ */