Anything related to C or C++ standard library functions `fgets` (C) or `std::fgets` (C++). These functions are used to read a sequence of characters from an input stream and to write it into a character buffer as a string.
Anything related to C or C++ standard library functions fgets
(defined in <stdio.h>
C standard header) or std::fgets
(defined in <cstdio>
C++ standard header). These functions are used to read a sequence of characters from an input stream and to write it into a character buffer as a string.
See CPPreference.com: