Adding gtest framework.
[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
15 #include <stdio.h>
16
17 #include "libmemcached/memcached.h"
18 #include "generator.h"
19
20 unsigned int execute_set(memcached_st *memc, pairs_st *pairs, unsigned int number_of);
21 unsigned int execute_get(memcached_st *memc, pairs_st *pairs, unsigned int number_of);
22 unsigned int execute_mget(memcached_st *memc, const char * const *keys, size_t *key_length,
23 unsigned int number_of);
24 #endif
25