From e2d6cf91432b8e560b030b54645a9c41e703aea6 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Thu, 8 Apr 2004 21:15:33 +0000 Subject: [PATCH] Se agregan cabeceras y se expanden keywords de svn. --- emufs/did.c | 37 +++++++++++++++++++++++++++++++++++++ emufs/did.h | 39 ++++++++++++++++++++++++++++++++++++++- emufs/idx.c | 36 ++++++++++++++++++++++++++++++++++++ emufs/idx.h | 37 +++++++++++++++++++++++++++++++++++++ 4 files changed, 148 insertions(+), 1 deletion(-) diff --git a/emufs/did.c b/emufs/did.c index 0e3b79f..ac09cab 100644 --- a/emufs/did.c +++ b/emufs/did.c @@ -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 + *---------------------------------------------------------------------------- + * + * $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) diff --git a/emufs/did.h b/emufs/did.h index 7f18e8b..f681742 100644 --- a/emufs/did.h +++ b/emufs/did.h @@ -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 + *---------------------------------------------------------------------------- + * + * $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 #include #include "emufs.h" int emufs_did_get_last(EMUFS *); - #endif /* _DID_H */ diff --git a/emufs/idx.c b/emufs/idx.c index 52f3b59..87f5c3c 100644 --- a/emufs/idx.c +++ b/emufs/idx.c @@ -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 + *---------------------------------------------------------------------------- + * + * $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" diff --git a/emufs/idx.h b/emufs/idx.h index e183892..5e34632 100644 --- a/emufs/idx.h +++ b/emufs/idx.h @@ -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 + *---------------------------------------------------------------------------- + * + * $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 #include "emufs.h" -- 2.43.0