aboutsummaryrefslogtreecommitdiff
path: root/src/hyper/item.pamphlet
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2008-03-07 15:19:01 +0000
committerdos-reis <gdr@axiomatics.org>2008-03-07 15:19:01 +0000
commit8531f4c74274b8aa99168d220738227557a9c418 (patch)
treec50b77870e432317be8f99c248e1339f74b51661 /src/hyper/item.pamphlet
parent33949ff2e6e5b5abe8d22c5604f42a6c9371079a (diff)
downloadopen-axiom-8531f4c74274b8aa99168d220738227557a9c418.tar.gz
* hyper/: De-pamphletize.
Diffstat (limited to 'src/hyper/item.pamphlet')
-rw-r--r--src/hyper/item.pamphlet155
1 files changed, 0 insertions, 155 deletions
diff --git a/src/hyper/item.pamphlet b/src/hyper/item.pamphlet
deleted file mode 100644
index f65a69f3..00000000
--- a/src/hyper/item.pamphlet
+++ /dev/null
@@ -1,155 +0,0 @@
-\documentclass{article}
-\usepackage{axiom}
-\begin{document}
-\title{\$SPAD/src/item}
-\author{The Axiom Team}
-\maketitle
-\begin{abstract}
-\end{abstract}
-\eject
-\tableofcontents
-\eject
-\section{item.c}
-<<item.c>>=
-#include "axiom-c-macros.h"
-#include "useproto.h"
-#define _ITEM_C
-#include "debug.h"
-#include "extent.h"
-
-#include "all_hyper_proto.H1"
-
-/*
- * Here are structures needed for manipulating the item stack
- */
-ItemStack *gTopOfItemStack = NULL;
-
-
-void
-push_item_stack(void)
-{
- ItemStack *is = (ItemStack *) halloc(sizeof(ItemStack), "Item stack");
-
- is->indent = indent;
- is->item_indent = item_indent;
- is->next = gTopOfItemStack;
- is->in_item = gInItem;
- gTopOfItemStack = is;
- return;
-}
-void
-clear_item_stack(void)
-{
- ItemStack *is = gTopOfItemStack, *chuck;
-
- while (is != NULL) {
- chuck = is;
- is = is->next;
- free(chuck);
- }
- return;
-}
-void
-pop_item_stack(void)
-{
- ItemStack *chuck;
-
- if (gTopOfItemStack == NULL) {
- fprintf(stderr, "Tried to pop an empty item stack\n");
- return;
- }
- chuck = gTopOfItemStack;
- gTopOfItemStack = gTopOfItemStack->next;
- indent = chuck->indent;
- item_indent = chuck->item_indent;
- gInItem = chuck->in_item;
- free(chuck);
-}
-
-ItemStack *
-copy_item_stack(void)
-{
- ItemStack *new = NULL;
- ItemStack *prev = NULL;
- ItemStack *trace = gTopOfItemStack;
- ItemStack *first = NULL;
-
- while (trace) {
- new = (ItemStack *) halloc(sizeof(ItemStack), "Item stack");
- new->indent = trace->indent;
- new->item_indent = trace->item_indent;
- new->in_item = gInItem;
- if (!first)
- first = new;
- else
- prev->next = new;
- prev = new;
- trace = trace->next;
- }
- if (new)
- new->next = NULL;
- return first;
-}
-
-void
-free_item_stack(ItemStack *is)
-{
- ItemStack *junk = NULL;
- ItemStack *trace = is;
-
- while (trace) {
- junk = trace;
- trace = trace->next;
- free(junk);
- }
-}
-@
-\section{License}
-<<license>>=
-/*
-Copyright (c) 1991-2002, The Numerical ALgorithms Group Ltd.
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are
-met:
-
- - Redistributions of source code must retain the above copyright
- notice, this list of conditions and the following disclaimer.
-
- - Redistributions in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in
- the documentation and/or other materials provided with the
- distribution.
-
- - Neither the name of The Numerical ALgorithms Group Ltd. nor the
- names of its contributors may be used to endorse or promote products
- derived from this software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
-IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
-TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
-PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
-OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
-LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
-NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-*/
-
-@
-<<*>>=
-<<license>>
-<<item.c>>
-@
-\eject
-\begin{thebibliography}{99}
-\bibitem{1} nothing
-\end{thebibliography}
-\end{document}
-
-
-
-