eliot-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Eliot-dev] Changes to eliot/dic/alist.c


From: eliot-dev
Subject: [Eliot-dev] Changes to eliot/dic/alist.c
Date: Fri, 04 Nov 2005 15:00:07 -0500

Index: eliot/dic/alist.c
diff -u eliot/dic/alist.c:1.2 eliot/dic/alist.c:1.3
--- eliot/dic/alist.c:1.2       Sun Oct 23 14:53:43 2005
+++ eliot/dic/alist.c   Fri Nov  4 20:00:06 2005
@@ -17,13 +17,9 @@
 /* along with this program; if not, write to the Free Software               */
 /* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA 
*/
 
-/*
- * $Id: alist.c,v 1.2 2005/10/23 14:53:43 ipkiss Exp $
- */
-
 /**
  *  \file   alist.c
- *  \brief  List type used by automaton 
+ *  \brief  List type used by automaton
  *  \author Antoine Fraboulet
  *  \date   2005
  */
@@ -44,12 +40,12 @@
 };
 
 
-void* 
+void*
 alist_elt_get_value(alist_elt e)
 {
   return e->info;
 }
-    
+
 alist_elt
 alist_elt_create(void* info)
 {
@@ -107,7 +103,7 @@
     }
 }
 
-void      
+void
 alist_delete(alist l)
 {
   alist_delete_rec(l->start,l->delete_function);
@@ -163,13 +159,13 @@
     }
 }
 
-alist_elt 
+alist_elt
 alist_get_first(alist l)
 {
   return l->start;
 }
 
-alist_elt 
+alist_elt
 alist_get_next(alist l, alist_elt e)
 {
   return e->next;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]