Home
last modified time | relevance | path

Searched refs:line_read (Results 1 – 2 of 2) sorted by relevance

/external/libxml2/
Dxmlcatalog.c66 char *line_read; in xmlShellReadline() local
69 line_read = readline (prompt); in xmlShellReadline()
72 if (line_read && *line_read) in xmlShellReadline()
73 add_history (line_read); in xmlShellReadline()
75 return (line_read); in xmlShellReadline()
77 char line_read[501]; in xmlShellReadline()
84 if (!fgets(line_read, 500, stdin)) in xmlShellReadline()
86 line_read[500] = 0; in xmlShellReadline()
87 len = strlen(line_read); in xmlShellReadline()
90 memcpy (ret, line_read, len + 1); in xmlShellReadline()
Dxmllint.c779 char *line_read; in xmlShellReadline() local
782 line_read = readline (prompt); in xmlShellReadline()
785 if (line_read && *line_read) in xmlShellReadline()
786 add_history (line_read); in xmlShellReadline()
788 return (line_read); in xmlShellReadline()
790 char line_read[501]; in xmlShellReadline()
797 if (!fgets(line_read, 500, stdin)) in xmlShellReadline()
799 line_read[500] = 0; in xmlShellReadline()
800 len = strlen(line_read); in xmlShellReadline()
803 memcpy (ret, line_read, len + 1); in xmlShellReadline()