Merge Jean-Charles
[awesomized/libmemcached] / clients / execute.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:
9 *
10 */
11
12 #ifndef CLIENTS_EXECUTE_H
13 #define CLIENTS_EXECUTE_H
14 #include "libmemcached/memcached.h"
15 #include "generator.h"
16
17 unsigned int execute_set(memcached_st *memc, pairs_st *pairs, unsigned int number_of);
18 unsigned int execute_get(memcached_st *memc, pairs_st *pairs, unsigned int number_of);
19 unsigned int execute_mget(memcached_st *memc, const char * const *keys, size_t *key_length,
20 unsigned int number_of);
21 #endif
22