X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;ds=sidebyside;f=functions%2Fstdio%2Fvfscanf.c;h=e9aa01002e21d687294fac4443a339bba0fe4d2d;hb=da0f3f353d417fed71f358a48d5d5394145e460d;hp=14bba50879c557a2837e78717e7bdd73de785c87;hpb=0a419d48138f1411d6e3e50a367b9ece5a2cf893;p=pdclib diff --git a/functions/stdio/vfscanf.c b/functions/stdio/vfscanf.c index 14bba50..e9aa010 100644 --- a/functions/stdio/vfscanf.c +++ b/functions/stdio/vfscanf.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* vfscanf( FILE *, const char *, va_list ) This file is part of the Public Domain C Library (PDCLib). @@ -11,9 +9,9 @@ #include #ifndef REGTEST -#include <_PDCLIB_io.h> +#include "_PDCLIB_io.h" -int vfscanf_unlocked( FILE * _PDCLIB_restrict stream, +int _PDCLIB_vfscanf_unlocked( FILE * _PDCLIB_restrict stream, const char * _PDCLIB_restrict format, va_list arg ) { @@ -47,18 +45,18 @@ int vfscanf_unlocked( FILE * _PDCLIB_restrict stream, } if ( ! feof( stream ) ) { - ungetc( c, stream ); + _PDCLIB_ungetc_unlocked( c, stream ); } } else { /* Non-whitespace char in format string: Match verbatim */ - if ( ( ( c = getc( stream ) ) != *format ) || feof( stream ) ) + if ( ( ( c = _PDCLIB_getc_unlocked( stream ) ) != *format ) || feof( stream ) ) { /* Matching error */ if ( ! feof( stream ) && ! ferror( stream ) ) { - ungetc( c, stream ); + _PDCLIB_ungetc_unlocked( c, stream ); } else if ( status.n == 0 ) { @@ -92,9 +90,9 @@ int vfscanf( FILE * _PDCLIB_restrict stream, const char * _PDCLIB_restrict format, va_list arg ) { - flockfile( stream ); - int r = vfscanf_unlocked( stream, format, arg ); - funlockfile( stream ); + _PDCLIB_flockfile( stream ); + int r = _PDCLIB_vfscanf_unlocked( stream, format, arg ); + _PDCLIB_funlockfile( stream ); return r; } @@ -104,7 +102,7 @@ int vfscanf( FILE * _PDCLIB_restrict stream, #define _PDCLIB_FILEID "stdio/vfscanf.c" #define _PDCLIB_FILEIO -#include <_PDCLIB_test.h> +#include "_PDCLIB_test.h" static int testscanf( FILE * stream, char const * format, ... ) {