~trond-norbye/libmemcached/compile-fixes

« back to all changes in this revision

Viewing changes to libtest/get.h

  • Committer: Brian Aker
  • Date: 2011-06-24 20:09:30 UTC
  • mfrom: (929.1.155 libmemcached-build)
  • Revision ID: brian@tangent.org-20110624200930-m268yogmnpyzs3qj
Merge in trunk. Updates to manual/update to latest libtest.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* 
 
2
 * uTest Copyright (C) 2011 Data Differential, http://datadifferential.com/
 
3
 *
 
4
 * Use and distribution licensed under the BSD license.  See
 
5
 * the COPYING file in the parent directory for full text.
 
6
 */
 
7
 
 
8
#pragma once
 
9
 
 
10
#ifdef  __cplusplus
 
11
extern "C" {
 
12
#endif
 
13
 
 
14
  /* How we make all of this work :) */
 
15
  LIBTEST_API
 
16
    void get_world(Framework *world);
 
17
 
 
18
#ifdef  __cplusplus
 
19
}
 
20
#endif
 
21
 
 
22