In an assignment for college it was suggested to use the C readline function in an exercise. I have searched for its reference but still haven't found it. Does it really exist? In which header? Can you please post the link to the reference?
|
|
|
Readline exists in two places, Note, take care to install either / or and adjust linking as needed ( Edit (afterthought): If releasing a program to the wild, its a nice gesture to allow the user to configure it with their Links: Readline and Edit/Editline. |
|||||||||
|
|
I don't think it's a standard function. I simple implementation would be like this: char *Readline(char *in) {
char *cptr;
if (cptr = fgets(in, MAX_LINE, stdin)) {
/* kill preceding whitespace but leave \n so we're guaranteed to have something
while(*cptr == ' ' || *cptr == '\t') {
cptr++;
}
return cptr;
} else {
return 0;
}
}
It uses fgets() to read up to MAX_LINE - 1 characters into the buffer 'in'. It strips preceding whitespace and returns a pointer to the first non-whitespace character. |
|||||||||||||
|
|
C doesn't define such a thing. |
|||
|
|
|
It doesn't exist. They were mistaken and referred to gets() from stdio.h. Also this is a very unsafe function due to no maximum size to read parameter, making it immediate security whole (lookup buffer overrun attack). You may use fgets() instead, like the angry comments below suggest. |
|||||||||||||||||||
|