Home | History | Annotate | Download | only in xfs
      1 /*
      2  * Copyright (c) 2012 Paulo Alcantara <pcacjr (at) zytor.com>
      3  *
      4  * This program is free software; you can redistribute it and/or
      5  * modify it under the terms of the GNU General Public License as
      6  * published by the Free Software Foundation.
      7  *
      8  * This program is distributed in the hope that it would be useful,
      9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
     10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     11  * GNU General Public License for more details.
     12  *
     13  * You should have received a copy of the GNU General Public License
     14  * along with this program; if not, write the Free Software Foundation,
     15  * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
     16  */
     17 
     18 #ifndef XFS_DINODE_H_
     19 #define XFS_DINODE_H_
     20 
     21 xfs_dinode_t *xfs_dinode_get_core(struct fs_info *fs, xfs_ino_t ino);
     22 
     23 #endif /* XFS_DINODE_H_ */
     24