Nouva macro quasi funzionante.
authorSimone Piccardi <piccardi@gnulinux.it>
Sun, 24 Jun 2001 10:13:52 +0000 (10:13 +0000)
committerSimone Piccardi <piccardi@gnulinux.it>
Sun, 24 Jun 2001 10:13:52 +0000 (10:13 +0000)
gapil.tex
macro.tex
process.tex

index 2564ee76184f7194fefe20bc38a2c93ff1b87029..a8b017bded62350b9a54f9f1fe9c4d78cbae39c6 100644 (file)
--- a/gapil.tex
+++ b/gapil.tex
@@ -1,4 +1,4 @@
-%%
+%% 
 %% GaPiL : Guida alla Programmazione in Linux
 %%
 %% S. Piccardi Feb. 2001
index f1b1bf554332874b091a101c28e8e3b9c73abc5b..e832de665e94eeadba3f93e13caa3cdd7a9ef821 100644 (file)
--- a/macro.tex
+++ b/macro.tex
@@ -94,24 +94,23 @@ tab.~\thechapter.\theusercount}
 % multi-functions boxed description
 %
 \newcommand{\headdecl}[1]{\par \texttt{\#include <#1>}}
-\newcommand{\funcdecl}[1]{\par \texttt{#1}}
+\newcommand{\funcdecl}[1]{\item\texttt{#1}\par}
 \newenvironment{functions}
 {% defining what is done by \begin
   \center
    \footnotesize
   \begin{minipage}[c]{14cm}
+  \begin{description}{}{} 
 
-  \begin{list}{}{} 
-    \item }
+}
 {% defining what is done by \end
-  \end{list
+  \end{description
   \par 
 \par \texttt{ }
 \end{minipage} 
 \normalsize 
 \par
 }
-\newenvironment{errlist}{\begin{description}}{\end{description}}
 
 
 
index 9cf5f869df8143e9cfee78d62a87f1e36db58fa1..741d4bb89bbb7a2ea1debaf019dad15ee1a50972 100644 (file)
@@ -435,7 +435,7 @@ maniera indiretta attraverso dei puntatori.
 
 Le funzioni previste dallo standard ANSI C per la gestione della memoria sono
 quattro, i prototipi sono i seguenti:
-\begin{prototypes}
+\begin{functions}
 \headdecl{stdlib.h}
 \funcdecl{void *calloc(size\_t size)}
   Alloca \texttt{size} bytes nello heap. La memoria viene inizializzata a 0.
@@ -461,7 +461,7 @@ quattro, i prototipi sono i seguenti:
 
   La funzione non ritorna nulla.
 
-\end{prototypes}
+\end{functions}
 \begin{prototype}{stdlib.h}{void *calloc(size\_t size)}
   Alloca \texttt{size} bytes nello heap. La memoria viene inizializzata a 0.