Fix all include location, and drop versions of the library that were never shipped.
[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 #pragma once
13
14 #include <stdio.h>
15
16 #include <libmemcached-1.0/memcached.h>
17 #include "clients/generator.h"
18
19 #ifdef __cplusplus
20 extern "C" {
21 #endif
22
23 unsigned int execute_set(memcached_st *memc, pairs_st *pairs, unsigned int number_of);
24 unsigned int execute_get(memcached_st *memc, pairs_st *pairs, unsigned int number_of);
25 unsigned int execute_mget(memcached_st *memc, const char * const *keys, size_t *key_length,
26 unsigned int number_of);
27
28 #ifdef __cplusplus
29 } // extern "C"
30 #endif