usr.bin/patch/ed.c
173
first_addr = strtolinenum(buf, &p);
usr.bin/patch/ed.c
174
second_addr = (*p == ',') ? strtolinenum(p + 1, &p) : -1;
usr.bin/patch/pch.c
1035
p_first = strtolinenum(buf, &s);
usr.bin/patch/pch.c
1037
p_ptrn_lines = strtolinenum(s + 1, &s) - p_first + 1;
usr.bin/patch/pch.c
1047
min = strtolinenum(s + 1, &s);
usr.bin/patch/pch.c
1049
max = strtolinenum(s + 1, &s);
usr.bin/patch/pch.c
354
if (strtolinenum(s + 4, &s) == 0)
usr.bin/patch/pch.c
592
p_first = strtolinenum(s, &s);
usr.bin/patch/pch.c
598
p_ptrn_lines = strtolinenum(s, &s) - p_first + 1;
usr.bin/patch/pch.c
663
p_newfirst = strtolinenum(s, &s);
usr.bin/patch/pch.c
669
p_repl_lines = strtolinenum(s, &s) -
usr.bin/patch/pch.c
874
p_first = strtolinenum(s, &s);
usr.bin/patch/pch.c
876
p_ptrn_lines = strtolinenum(s + 1, &s);
usr.bin/patch/pch.c
883
p_newfirst = strtolinenum(s, &s);
usr.bin/patch/pch.c
885
p_repl_lines = strtolinenum(s + 1, &s);
usr.bin/patch/pch.h
60
LINENUM strtolinenum(char *, char **);