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
1042
p_first = strtolinenum(buf, &s);
usr.bin/patch/pch.c
1044
p_ptrn_lines = strtolinenum(s + 1, &s) - p_first + 1;
usr.bin/patch/pch.c
1054
min = strtolinenum(s + 1, &s);
usr.bin/patch/pch.c
1056
max = strtolinenum(s + 1, &s);
usr.bin/patch/pch.c
361
if (strtolinenum(s + 4, &s) == 0)
usr.bin/patch/pch.c
599
p_first = strtolinenum(s, &s);
usr.bin/patch/pch.c
605
p_ptrn_lines = strtolinenum(s, &s) - p_first + 1;
usr.bin/patch/pch.c
670
p_newfirst = strtolinenum(s, &s);
usr.bin/patch/pch.c
676
p_repl_lines = strtolinenum(s, &s) -
usr.bin/patch/pch.c
881
p_first = strtolinenum(s, &s);
usr.bin/patch/pch.c
883
p_ptrn_lines = strtolinenum(s + 1, &s);
usr.bin/patch/pch.c
890
p_newfirst = strtolinenum(s, &s);
usr.bin/patch/pch.c
892
p_repl_lines = strtolinenum(s + 1, &s);
usr.bin/patch/pch.h
60
LINENUM strtolinenum(char *, char **);