blob: fb8c8dc88546142d60c78f69c37758c85311f8b4 (
plain) (
tree)
|
|
/* See LICENSE file for copyright and license details. */
#include "libsimple.h"
#ifndef TEST
wchar_t *
libsimple_enwmemdup(int status, const wchar_t *s, size_t n) /* TODO test */
{
wchar_t *ret = libsimple_wmemdup(s, n);
if (!ret)
enprintf(status, "wmemdup:");
return ret;
}
#else
#include "test.h"
int
main(void)
{
return 0;
}
#endif
|