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.c786 char *line_read; in xmlShellReadline() local
789 line_read = readline (prompt); in xmlShellReadline()
792 if (line_read && *line_read) in xmlShellReadline()
793 add_history (line_read); in xmlShellReadline()
795 return (line_read); in xmlShellReadline()
797 char line_read[501]; in xmlShellReadline()
804 if (!fgets(line_read, 500, stdin)) in xmlShellReadline()
806 line_read[500] = 0; in xmlShellReadline()
807 len = strlen(line_read); in xmlShellReadline()
810 memcpy (ret, line_read, len + 1); in xmlShellReadline()