X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/e7e2badf7ebc4b6aeaf03366ad6fe6b919713d54..7a86d06abb03ced86951067cf341f228acfc9f30:/emufs/idx.h diff --git a/emufs/idx.h b/emufs/idx.h index 28aadc4..a2c9736 100644 --- a/emufs/idx.h +++ b/emufs/idx.h @@ -1,7 +1,49 @@ +/* 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" int emufs_idx_buscar_mayor_id(EMUFS *); +int emufs_idx_buscar_registro(EMUFS *, int); + +int emufs_idx_agregar(EMUFS *, int , int); + #endif /* _IDX_H */