Mass rename to simplify names.
[m6w6/libmemcached] / libmemcached / behavior.h
1 /* LibMemcached
2 * Copyright (C) 2006-2009 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: Change the behavior of the memcached connection.
9 *
10 */
11
12 #ifndef __MEMCACHED_BEHAVIOR_H__
13 #define __MEMCACHED_BEHAVIOR_H__
14
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
18
19 LIBMEMCACHED_API
20 memcached_return_t memcached_behavior_set(memcached_st *ptr, memcached_behavior_t flag, uint64_t data);
21
22 LIBMEMCACHED_API
23 uint64_t memcached_behavior_get(memcached_st *ptr, memcached_behavior_t flag);
24
25
26 #ifdef __cplusplus
27 }
28 #endif
29
30 #endif /* __MEMCACHED_BEHAVIOR_H__ */