Intial commit

This commit is contained in:
Mario Fetka
2024-05-27 16:13:40 +02:00
parent f8dc12b10a
commit d71d446104
2495 changed files with 539746 additions and 0 deletions

18
prospero/lib/pfs/qscanf.c Normal file
View File

@@ -0,0 +1,18 @@
/* Copyright (c) 1993 by the University of Southern California.
* For copying information, see the file <usc-copyr.h>
*/
#include <usc-copyr.h>
#include <pparse.h>
extern int
qscanf(INPUT in, const char fmt[], ...)
{
int retval;
va_list ap;
va_start(ap, fmt);
retval = vqscanf(in, fmt, ap);
va_end(ap);
return retval;
}