xref: /original-bsd/games/trek/out.c (revision 0f89e6eb)
1 /*
2  * Copyright (c) 1980 Regents of the University of California.
3  * All rights reserved.  The Berkeley software License Agreement
4  * specifies the terms and conditions for redistribution.
5  */
6 
7 #ifndef lint
8 static char sccsid[] = "@(#)out.c	5.1 (Berkeley) 05/30/85";
9 #endif not lint
10 
11 # include	"trek.h"
12 
13 /*
14 **  Announce Device Out
15 */
16 
17 out(dev)
18 int	dev;
19 {
20 	register struct device	*d;
21 
22 	d = &Device[dev];
23 	printf("%s reports %s ", d->person, d->name);
24 	if (d->name[length(d->name) - 1] == 's')
25 		printf("are");
26 	else
27 		printf("is");
28 	printf(" damaged\n");
29 }
30