Files
Arquivotheca.SunOS-4.1.4/games/battlestar/misc.c
seta75D ff309bfe1c Init
2021-10-11 18:37:13 -03:00

36 lines
673 B
C

#ifndef lint
static char sccsid[] = "@(#)misc.c 1.1 94/10/31 SMI"; /* from UCB 1.2 85/04/24 */
#endif
/*
* Copyright (c) 1983 Regents of the University of California,
* All rights reserved. Redistribution permitted subject to
* the terms of the Berkeley Software License Agreement.
*/
#include "externs.h"
card(array, size) /* for beenthere, injuries */
register char *array;
int size;
{
register char *end = array + size;
register int i = 0;
while (array < end)
if (*array++)
i++;
return (i);
}
ucard(array)
register unsigned *array;
{
register int j = 0, n;
for (n = 0; n < NUMOFOBJECTS; n++)
if (testbit(array, n))
j++;
return (j);
}