12345678910111213141516171819202122232425262728293031323334353637 |
- #include "_stdio.h"
- #undef getchar_unlocked
- char *gets(char *s)
- {
- register char *p = s;
- int c;
- __STDIO_AUTO_THREADLOCK_VAR;
- __STDIO_AUTO_THREADLOCK(stdin);
-
- while (((c = getchar_unlocked()) != EOF) && ((*p = c) != '\n')) {
- ++p;
- }
- if ((c == EOF) || (s == p)) {
- s = NULL;
- } else {
- *p = 0;
- }
- __STDIO_AUTO_THREADUNLOCK(stdin);
- return s;
- }
|