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) 5/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: }
Last modified: 1985-05-30
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 1761
Valid CSS Valid XHTML 1.0 Strict