Go to the source code of this file.
|
static void | pnf (char *s, int n) |
|
void | title () |
|
static void pnf |
( |
char * |
s, |
|
|
int |
n |
|
) |
| |
|
static |
Definition at line 12 of file info2.c.
20 while(++i<40) printf(
".");
21 printf(
" %3d bytes.\n",n);
Definition at line 31 of file info2.c.
References PARSER_STACK_SIZE, pnf(), quietflag, REAL, and STRLEN.
36 printf(
"Wild_Life Interpreter Version 2.28 Mon Oct 24 22:05:39 CDT 2016\n");
37 printf(
"Copyright (C) 1991-93 DEC Paris Research Laboratory\n");
38 printf(
"Extensions, Copyright (C) 1994-1995 Intelligent Software Group, SFU\n");
49 printf(
"X interface not installed.\n");
53 printf(
"\n- Main data-structure sizes:\n");
56 pnf(
"binary tree node",
sizeof(
struct node));
57 pnf(
"stacked goal",
sizeof(
struct goal));
62 pnf(
"list node",
sizeof(
struct list));
63 pnf(
"real number",
sizeof(
REAL));
65 printf(
"\n- Size of C built-in types:\n");
67 pnf(
"long",
sizeof(
long));
68 pnf(
"int",
sizeof(
unsigned long));
69 pnf(
"pointer",
sizeof(
char *));
71 printf(
"\n- System constants:\n");
72 pnf(
"Maximum string or line length:",
STRLEN);
74 pnf(
"Size of real numbers:",
sizeof(
REAL));
#define PARSER_STACK_SIZE
static void pnf(char *s, int n)