Lines Matching defs:line
240 * Read line from console (with history)
244 * @ret line Line read from console (excluding terminating newline)
246 * The returned line is allocated with malloc(); the caller must
256 char *line;
275 line = strdup ( buf );
276 if ( ! line )
280 line = NULL;
306 if ( line && line[0] )
307 history_append ( history, line );
310 return line;
314 * Read line from console
317 * @ret line Line read from console (excluding terminating newline)
319 * The returned line is allocated with malloc(); the caller must