This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Custom getchar

Is there a way to prevent getchar from echoing the input characters? I tried to write my own implementation of getchar, but the linker doesn't seem to let me do that.
- Mike

Parents
  • I wanted to be able to use scanf without the echo. It seems like the only way is to replace getchar and ungetchar in the standard library using the library manager.
    OK, I'll use sscanf instead. But wouldn't it be nice if Keil allowed us to change the implementation of getchar and ungetchar?
    - Mike

Reply
  • I wanted to be able to use scanf without the echo. It seems like the only way is to replace getchar and ungetchar in the standard library using the library manager.
    OK, I'll use sscanf instead. But wouldn't it be nice if Keil allowed us to change the implementation of getchar and ungetchar?
    - Mike

Children