/*
* Copyright (c) 2000-2001 Sendmail, Inc. and its suppliers.
* All rights reserved.
* Copyright (c) 1990, 1993
* The Regents of the University of California. All rights reserved.
*
* This code is derived from software contributed to Berkeley by
* Chris Torek.
*
* By using this file, you agree to the terms and conditions set
* forth in the LICENSE file which can be found at the top level of
* the sendmail distribution.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
#include "local.h"
/*
** SM_IO_FSCANF -- convert input data to translated format
**
** Parameters:
** fp -- the file pointer to obtain the data from
** timeout -- time to complete scan
** fmt -- the format to translate the data to
** ... -- memory locations to place the formated data
**
** Returns:
** Failure: returns SM_IO_EOF
** Success: returns the number of data units translated
*/
int
#if SM_VA_STD
#else /* SM_VA_STD */
int timeout;
char *fmt;
#endif /* SM_VA_STD */
{
int ret;
return ret;
}