| 8 |
|
#include "standard.h" |
| 9 |
|
#include <ctype.h> |
| 10 |
|
#include <string.h> |
| 11 |
+ |
#include <stdio.h> |
| 12 |
+ |
|
| 13 |
+ |
#include "platform.h" |
| 14 |
|
#include "object.h" |
| 15 |
|
#include "color.h" |
| 16 |
|
#include "lookup.h" |
| 263 |
|
*cp2++ = 'O'; |
| 264 |
|
} |
| 265 |
|
for (cp = id; cp < end; *cp2++ = *cp++) { |
| 266 |
< |
if (*cp < '!' | *cp > '~') /* limit to visible chars */ |
| 266 |
> |
if ((*cp < '!') | (*cp > '~')) /* limit to visible chars */ |
| 267 |
|
*cp = '?'; |
| 268 |
|
diff += *cp != *cp2; |
| 269 |
|
} |
| 428 |
|
register char *cp; |
| 429 |
|
register int i; |
| 430 |
|
|
| 431 |
< |
if (fa->nfargs < 9 | fa->nfargs % 3) |
| 431 |
> |
if ((fa->nfargs < 9) | (fa->nfargs % 3)) |
| 432 |
|
return(-1); |
| 433 |
|
setmat(mod); |
| 434 |
|
setobj(id); |