X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Ftest.h;h=8bc4d7a9ab1e329d1650bb720e389dbea4759ff1;hb=99803a66dda300ea7a5741fe8aae852e8b746366;hp=de9d6de2882ed6cca697e923d33788f1b963b5bc;hpb=fa543a0643aafcd5042080ca060f0418b95eb8ca;p=awesomized%2Flibmemcached diff --git a/tests/test.h b/tests/test.h index de9d6de2..8bc4d7a9 100644 --- a/tests/test.h +++ b/tests/test.h @@ -1,6 +1,10 @@ /* Structures for generic tests. */ +#ifdef __cplusplus +extern "C" { + +#endif #include #include "../lib/common.h" @@ -10,7 +14,7 @@ typedef struct test_st test_st; struct test_st { char *name; unsigned int requires_flush; - void (*function)(memcached_st *memc); + uint8_t (*function)(memcached_st *memc); }; struct collection_st { @@ -22,3 +26,7 @@ struct collection_st { /* How we make all of this work :) */ collection_st *gets_collections(void); + +#ifdef __cplusplus +} +#endif