Deleted Added
full compact
39c39
< "$FreeBSD: head/contrib/telnet/libtelnet/genget.c 63248 2000-07-16 05:48:49Z peter $";
---
> "$FreeBSD: head/contrib/telnet/libtelnet/genget.c 81965 2001-08-20 12:28:40Z markm $";
53,55c53,54
< int
< isprefix(s1, s2)
< register char *s1, *s2;
---
> int
> isprefix(char *s1, char *s2)
58c57
< register char c1, c2;
---
> char c1, c2;
76,80c75,76
< char **
< genget(name, table, stlen)
< char *name; /* name to match */
< char **table; /* name entry in table */
< int stlen;
---
> char **
> genget(char *name, char **table, int stlen)
82,83c78,79
< register char **c, **found;
< register int n;
---
> char **c, **found;
> int n;
104,106c100,101
< int
< Ambiguous(s)
< char **s;
---
> int
> Ambiguous(char *s)
108c103
< return(s == &ambiguous);
---
> return((char **)s == &ambiguous);