]> git.llucax.com Git - z.facultad/75.06/emufs.git/commitdiff
Se agregan cabeceras y se expanden keywords de svn.
authorLeandro Lucarella <llucax@gmail.com>
Thu, 8 Apr 2004 21:15:33 +0000 (21:15 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Thu, 8 Apr 2004 21:15:33 +0000 (21:15 +0000)
emufs/did.c
emufs/did.h
emufs/idx.c
emufs/idx.h

index 0e3b79f730e3e4ec92ce789d071963cd3baea550..ac09cab3e47931a7455eeaccae7a203f130f8c51 100644 (file)
@@ -1,3 +1,40 @@
+/* vim: set noexpandtab tabstop=4 shiftwidth=4:
+ *----------------------------------------------------------------------------
+ *                                  emufs
+ *----------------------------------------------------------------------------
+ * This file is part of emufs.
+ *
+ * emufs 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 2 of the License, or (at your option) any later
+ * version.
+ *
+ * emufs 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 emufs; if not, write to the Free Software Foundation, Inc., 59 Temple
+ * Place, Suite 330, Boston, MA  02111-1307  USA
+ *----------------------------------------------------------------------------
+ * Creado:  jue abr  8 18:07:57 ART 2004
+ * Autores: Nicolás Dimov <sagardua@uolsinectis.com.ar>
+ *----------------------------------------------------------------------------
+ *
+ * $Id$
+ *
+ */
+
+/** \file
+ *
+ * Manejo de archivos de índices de registros borrados (reutilizables).
+ * 
+ * Implementación del manejo de archivos de índices de registros borrados
+ * (reutilizables).
+ *
+ */
+
 #include "did.h"
 
 int emufs_did_get_last(EMUFS *emu)
index 7f18e8bdb7d28219897bc8b6d31f29eafee52677..f681742ef5a19ca1242397c778ec13dda5b2d164 100644 (file)
@@ -1,10 +1,47 @@
+/* vim: set noexpandtab tabstop=4 shiftwidth=4:
+ *----------------------------------------------------------------------------
+ *                                  emufs
+ *----------------------------------------------------------------------------
+ * This file is part of emufs.
+ *
+ * emufs 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 2 of the License, or (at your option) any later
+ * version.
+ *
+ * emufs 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 emufs; if not, write to the Free Software Foundation, Inc., 59 Temple
+ * Place, Suite 330, Boston, MA  02111-1307  USA
+ *----------------------------------------------------------------------------
+ * Creado:  jue abr  8 18:09:31 ART 2004
+ * Autores: Nicolás Dimov <sagardua@uolsinectis.com.ar>
+ *----------------------------------------------------------------------------
+ *
+ * $Id$
+ *
+ */
+
+/** \file
+ *
+ * Manejo de archivos de índices de registros borrados (reutilizables).
+ * 
+ * Interfaz del manejo de archivos de índices de registros borrados
+ * (reutilizables).
+ *
+ */
+
 #ifndef _DID_H_
 #define _DID_H_
+
 #include <string.h>
 #include <unistd.h>
 #include "emufs.h"
 
 int emufs_did_get_last(EMUFS *); 
 
-
 #endif /* _DID_H */
index 52f3b59933ccf788b0f8e5f681b24df642b4d34f..87f5c3c1b479925a3318d45f68f03d3edd32d572 100644 (file)
@@ -1,3 +1,39 @@
+/* vim: set noexpandtab tabstop=4 shiftwidth=4:
+ *----------------------------------------------------------------------------
+ *                                  emufs
+ *----------------------------------------------------------------------------
+ * This file is part of emufs.
+ *
+ * emufs 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 2 of the License, or (at your option) any later
+ * version.
+ *
+ * emufs 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 emufs; if not, write to the Free Software Foundation, Inc., 59 Temple
+ * Place, Suite 330, Boston, MA  02111-1307  USA
+ *----------------------------------------------------------------------------
+ * Creado:  jue abr  8 18:10:35 ART 2004
+ * Autores: Nicolás Dimov <sagardua@uolsinectis.com.ar>
+ *----------------------------------------------------------------------------
+ *
+ * $Id$
+ *
+ */
+
+/** \file
+ *
+ * Manejo de archivos de índice de registros.
+ * 
+ * Implementación del manejo de archivos de índice de registros.
+ *
+ */
+
 #include "idx.h"
 #include "tipo3.h"
 
index e183892253c319cd2614b4d28be116d33a2b42a2..5e346327d9706bcbf5c96a475a86b8ac131e14e0 100644 (file)
@@ -1,5 +1,42 @@
+/* vim: set noexpandtab tabstop=4 shiftwidth=4:
+ *----------------------------------------------------------------------------
+ *                                  emufs
+ *----------------------------------------------------------------------------
+ * This file is part of emufs.
+ *
+ * emufs 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 2 of the License, or (at your option) any later
+ * version.
+ *
+ * emufs 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 emufs; if not, write to the Free Software Foundation, Inc., 59 Temple
+ * Place, Suite 330, Boston, MA  02111-1307  USA
+ *----------------------------------------------------------------------------
+ * Creado:  jue abr  8 18:11:46 ART 2004
+ * Autores: Nicolás Dimov <sagardua@uolsinectis.com.ar>
+ *----------------------------------------------------------------------------
+ *
+ * $Id$
+ *
+ */
+
+/** \file
+ *
+ * Manejo de archivos de índice de registros.
+ * 
+ * Interfaz del manejo de archivos de índice de registros.
+ *
+ */
+
 #ifndef _IDX_H
 #define _IDX_H
+
 #include <string.h>
 #include "emufs.h"