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()
83 if (!fgets(line_read, 500, stdin)) in xmlShellReadline()
85 line_read[500] = 0; in xmlShellReadline()
86 len = strlen(line_read); in xmlShellReadline()
89 memcpy (ret, line_read, len + 1); in xmlShellReadline()
Dxmllint.c793 char *line_read; in xmlShellReadline() local
796 line_read = readline (prompt); in xmlShellReadline()
799 if (line_read && *line_read) in xmlShellReadline()
800 add_history (line_read); in xmlShellReadline()
802 return (line_read); in xmlShellReadline()
804 char line_read[501]; in xmlShellReadline()
810 if (!fgets(line_read, 500, stdin)) in xmlShellReadline()
812 line_read[500] = 0; in xmlShellReadline()
813 len = strlen(line_read); in xmlShellReadline()
816 memcpy (ret, line_read, len + 1); in xmlShellReadline()