4 void *tss_get(tss_t key)
\r
11 #include <_PDCLIB_test.h>
\r
21 TESTCASE(tss_create(&key, NULL) == thrd_success);
\r
22 TESTCASE(tss_get(key) == NULL);
\r
23 TESTCASE(tss_set(key, &v) == thrd_success);
\r
24 TESTCASE(tss_get(key) == &v);
\r
27 return TEST_RESULTS;
\r