Files
seta75D 2e8a93c394 Init
2021-10-11 18:20:23 -03:00

39 lines
848 B
C

/*
* Copyright (c) 1980 Regents of the University of California.
* All rights reserved. The Berkeley software License Agreement
* specifies the terms and conditions for redistribution.
*/
#ifndef lint
static char sccsid[] = "@(#)fullname.c 1.1 92/07/30 SMI"; /* from UCB 5.1 85/06/07 */
#endif not lint
# define reg register
/*
* This routine fills in "def" with the full name of the terminal.
* This is assumed to be the last name in the list of aliases.
*
*/
char *
fullname(bp, def)
reg char *bp, *def;
{
reg char *cp;
*def = 0; /* in case no name */
while (*bp && *bp != ':') {
cp = def; /* start of answer */
while (*bp && *bp != ':' && *bp != '|') {
*cp++ = *bp++; /* copy name over */
}
*cp = 0; /* zero end of name */
if (*bp == '|') {
bp++; /* skip over '|' if that is case */
}
}
return(def);
}