File Refactoring
[m6w6/libmemcached] / libmemcached / 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: Find version information
9 *
10 */
11
12 #ifndef __MEMCACHED_VERSION_H__
13 #define __MEMCACHED_VERSION_H__
14
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
18
19 LIBMEMCACHED_API
20 memcached_return_t memcached_version(memcached_st *ptr);
21
22 LIBMEMCACHED_API
23 const char * memcached_lib_version(void);
24
25 #ifdef __cplusplus
26 }
27 #endif
28
29 #endif /* __MEMCACHED_VERSION_H__ */