1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
|
/* -*-comment-start: "//";comment-end:""-*-
* GNU Mes --- Maxwell Equations of Software
* Copyright © 2017 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
*
* This file is part of GNU Mes.
*
* GNU Mes is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or (at
* your option) any later version.
*
* GNU Mes is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GNU Mes. If not, see <http://www.gnu.org/licenses/>.
*/
#include <mes/lib.h>
#include <mes/lib.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
typedef struct file
{
char name[10];
} file_struct;
#define STACK_SIZE 2
struct state
{
int bla;
file_struct *stack[STACK_SIZE];
char buf[100];
file_struct **stack_ptr;
char buf1[100];
};
int
main ()
{
struct state s;
struct state *ps;
ps = &s;
eputs ("0\n");
s.stack_ptr = s.stack;
ps->stack_ptr = ps->stack;
eputs ("ps->stack=");
eputs (itoa (ps->stack));
eputs ("\n");
eputs ("1\n");
if (ps->stack_ptr >= ps->stack + STACK_SIZE)
return 1;
eputs ("2\n");
struct file f = { "first.h" };
#if 0 //__MESC__
strcpy (f.name, "first.h");
#endif
eputs (f.name);
eputs ("\n");
*ps->stack_ptr = &f;
eputs ("3\n");
++ps->stack_ptr;
eputs ("s.stack_ptr -stack =");
eputs (itoa (ps->stack_ptr - ps->stack));
eputs ("\n");
eputs ("4\n");
for (file_struct ** p = ps->stack; p < ps->stack_ptr; p++)
{
eputs ((*p)->name);
eputs ("\n");
}
eputs ("5\n");
int i;
i = ps->stack_ptr - ps->stack + STACK_SIZE;
eputs ("i=");
eputs (itoa (i));
eputs ("\n");
if (ps->stack_ptr >= ps->stack + STACK_SIZE)
return 2;
eputs ("6\n");
struct file f2 = { "second.h" };
#if 0 //__MESC__
strcpy (f2.name, "second.h");
#endif
*ps->stack_ptr = &f2;
eputs ("7\n");
++ps->stack_ptr;
eputs ("s.stack_ptr -stack =");
eputs (itoa (ps->stack_ptr - ps->stack));
eputs ("\n");
for (file_struct ** p = ps->stack; p < ps->stack_ptr; p++)
{
eputs ((*p)->name);
eputs ("\n");
}
if (ps->stack_ptr >= ps->stack + STACK_SIZE)
return 0;
struct file f3 = { "third.h" };
*ps->stack_ptr = &f3;
++ps->stack_ptr;
return 3;
}
|