MicrOS
|
#include "../stdio.h"
Functions | |
char * | gets (char *str) |
Get string from stdin. More... | |
char* gets | ( | char * | str | ) |
Get string from stdin.
Reads characters from the standard input (stdin) and stores them as a C string into str until a newline character or the end-of-file is reached.
str | Pointer to a block of memory (array of char) where the string read is copied as a C string. |