2 * Copyright (c) 2000-2001 Sendmail, Inc. and its suppliers.
5 * By using this file, you agree to the terms and conditions set
6 * forth in the LICENSE file which can be found at the top level of
7 * the sendmail distribution.
10 #pragma ident "%Z%%M% %I% %E% SMI"
13 SM_IDSTR(id
, "@(#)$Id: t-strio.c,v 1.9 2001/03/03 04:00:53 ca Exp $")
14 #include <sm/string.h>
27 sm_test_begin(argc
, argv
, "test strio");
28 (void) memset(buf
, '.', 20);
29 sm_strio_init(&f
, buf
, 10);
30 (void) sm_io_fprintf(&f
, SM_TIME_DEFAULT
, "foobarbazoom");
31 sm_io_flush(&f
, SM_TIME_DEFAULT
);
33 SM_TEST(strcmp(buf
, r
) == 0);