Share

AcFILE::ungetc

C++

int ungetc(
    wchar_t c
);

Description

Pushes a character back onto the file.

If successful, this method returns the character argument c. If c cannot be pushed back or if no character has been read, it returns EOF (-1).

Parameters

Parameters Description
c Input character to be pushed

Links

AcFILE

Previous Declaration

int ungetc(

TCHAR c

);

Was this information helpful?