123456789101112131415161718192021222324252627282930313233343536 |
- #include "_stdio.h"
- link_warning(gets, "the 'gets' function is dangerous and should not be used.")
- 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;
- }
|