_doscan.c revision da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968
9512fe850e98fdd448c638ca63fdd92a8a510255ahl/***********************************************************************
9512fe850e98fdd448c638ca63fdd92a8a510255ahl* *
9512fe850e98fdd448c638ca63fdd92a8a510255ahl* This software is part of the ast package *
9512fe850e98fdd448c638ca63fdd92a8a510255ahl* Copyright (c) 1985-2007 AT&T Knowledge Ventures *
9512fe850e98fdd448c638ca63fdd92a8a510255ahl* and is licensed under the *
9512fe850e98fdd448c638ca63fdd92a8a510255ahl* Common Public License, Version 1.0 *
9512fe850e98fdd448c638ca63fdd92a8a510255ahl* by AT&T Knowledge Ventures *
9512fe850e98fdd448c638ca63fdd92a8a510255ahl* *
9512fe850e98fdd448c638ca63fdd92a8a510255ahl* A copy of the License is available at *
9512fe850e98fdd448c638ca63fdd92a8a510255ahl* http://www.opensource.org/licenses/cpl1.0.txt *
9512fe850e98fdd448c638ca63fdd92a8a510255ahl* (with md5 checksum 059e8cd6165cb4c31e351f2b69388fd9) *
9512fe850e98fdd448c638ca63fdd92a8a510255ahl* *
9512fe850e98fdd448c638ca63fdd92a8a510255ahl* Information and Software Systems Research *
9512fe850e98fdd448c638ca63fdd92a8a510255ahl* AT&T Research *
9512fe850e98fdd448c638ca63fdd92a8a510255ahl* Florham Park NJ *
9512fe850e98fdd448c638ca63fdd92a8a510255ahl* *
9512fe850e98fdd448c638ca63fdd92a8a510255ahl* Glenn Fowler <gsf@research.att.com> *
9512fe850e98fdd448c638ca63fdd92a8a510255ahl* David Korn <dgk@research.att.com> *
9512fe850e98fdd448c638ca63fdd92a8a510255ahl* Phong Vo <kpv@research.att.com> *
9512fe850e98fdd448c638ca63fdd92a8a510255ahl* *
9512fe850e98fdd448c638ca63fdd92a8a510255ahl***********************************************************************/
9512fe850e98fdd448c638ca63fdd92a8a510255ahl#pragma prototyped
9512fe850e98fdd448c638ca63fdd92a8a510255ahl
9512fe850e98fdd448c638ca63fdd92a8a510255ahl#include "stdhdr.h"
9512fe850e98fdd448c638ca63fdd92a8a510255ahl
9512fe850e98fdd448c638ca63fdd92a8a510255ahlint
9512fe850e98fdd448c638ca63fdd92a8a510255ahl_doscan(Sfio_t* f, const char* fmt, va_list args)
9512fe850e98fdd448c638ca63fdd92a8a510255ahl{
9512fe850e98fdd448c638ca63fdd92a8a510255ahl STDIO_INT(f, "_doscan", int, (Sfio_t*, const char*, va_list), (f, fmt, args))
9512fe850e98fdd448c638ca63fdd92a8a510255ahl
9512fe850e98fdd448c638ca63fdd92a8a510255ahl return sfvscanf(f, fmt, args);
9512fe850e98fdd448c638ca63fdd92a8a510255ahl}
9512fe850e98fdd448c638ca63fdd92a8a510255ahl