Files
retrobsd/src/libcurses/fullname.c
Serge Vakulenko 9d39282ae9 All paths moved to path.h.
Cleanup in curses.h: removed reg definition.
All include files reformatted for 4-space indent.
2015-06-24 20:57:08 -07:00

32 lines
708 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.
*/
/*
* 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)
char *bp, *def;
{
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);
}