Searched refs:getchar (Results 1 – 9 of 9) sorted by relevance
7 defined in cstdio's std:: getchar, putchar, clearerr, feof, ferror25 +#ifdef getchar26 +inline _LIBCPP_INLINE_VISIBILITY int __libcpp_getchar(void) {return getchar();}27 +#undef getchar28 +inline _LIBCPP_INLINE_VISIBILITY int getchar(void) {return __libcpp_getchar();}29 +#endif // getchar
107 # undef getchar108 # define getchar() getchar_unlocked () macro110 # define getchar_unlocked() getchar ()
76 int getchar(void);117 #ifdef getchar118 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_getchar(void) {return getchar();}119 #undef getchar120 inline _LIBCPP_INLINE_VISIBILITY int getchar(void) {return __libcpp_getchar();}121 #endif // getchar203 using ::getchar;
6 int a = std::getchar(); in main()
60 # undef getchar93 using _STLP_VENDOR_CSTD::getchar;
65 using ::getchar;
119 static_assert((std::is_same<decltype(getchar()), int>::value), ""); in main()
120 static_assert((std::is_same<decltype(std::getchar()), int>::value), ""); in main()