1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
/* This file is part of the YAZ toolkit.
* Copyright (C) Index Data
* See the file LICENSE for details.
*/
#if HAVE_CONFIG_H
#include <config.h>
#endif
#include <errno.h>
#include <string.h>
#include <yaz/xmalloc.h>
#include <yaz/test.h>
void tst(void)
{
char *p = 0;
p = (char *) xmalloc(10);
YAZ_CHECK(p);
p = (char *) xrealloc(p, 20);
YAZ_CHECK(p);
xfree(p);
p = xstrdup("hello");
YAZ_CHECK(p);
if (!p)
return;
YAZ_CHECK(!strcmp(p, "hello"));
xfree(p);
p = xstrndup("hello", 2);
YAZ_CHECK(p);
if (!p)
return;
YAZ_CHECK(!strcmp(p, "he"));
xfree(p);
p = xstrndup("hello", 6);
YAZ_CHECK(p);
if (!p)
return;
YAZ_CHECK(!strcmp(p, "hello"));
xfree(p);
}
int main (int argc, char **argv)
{
YAZ_CHECK_INIT(argc, argv);
tst();
YAZ_CHECK_TERM;
}
/*
* Local variables:
* c-basic-offset: 4
* c-file-style: "Stroustrup"
* indent-tabs-mode: nil
* End:
* vim: shiftwidth=4 tabstop=8 expandtab
*/
|