source: rtems/cpukit/libfs/src/imfs/imfs_ntype.c @ 7c007cf

4.104.114.95
Last change on this file since 7c007cf was a5305f6b, checked in by Ralf Corsepius <ralf.corsepius@…>, on 04/17/04 at 08:34:41

Remove stray white spaces.

  • Property mode set to 100644
File size: 650 bytes
Line 
1/*
2 *  IMFS_node_type
3 *
4 *  The following verifies that returns the type of node that the
5 *  loc refers to.
6 *
7 *  COPYRIGHT (c) 1989-1999.
8 *  On-Line Applications Research Corporation (OAR).
9 *
10 *  The license and distribution terms for this file may be
11 *  found in the file LICENSE in this distribution or at
12 *  http://www.rtems.com/license/LICENSE.
13 *
14 *  $Id$
15 */
16
17#if HAVE_CONFIG_H
18#include "config.h"
19#endif
20
21#include <errno.h>
22#include "imfs.h"
23
24rtems_filesystem_node_types_t IMFS_node_type(
25   rtems_filesystem_location_info_t    *pathloc         /* IN */
26)
27{
28  IMFS_jnode_t *node;
29
30  node = pathloc->node_access;
31  return node->type;
32}
Note: See TracBrowser for help on using the repository browser.