source: rtems/cpukit/libfs/src/dosfs/msdos_handlers_dir.c @ a29d2e7

4.104.114.84.95
Last change on this file since a29d2e7 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: 866 bytes
Line 
1/*
2 *  Directory Handlers Table for MSDOS filesystem
3 *
4 *  Copyright (C) 2001 OKTET Ltd., St.-Petersburg, Russia
5 *  Author: Eugeny S. Mints <Eugeny.Mints@oktet.ru>
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
9 *  http://www.rtems.com/license/LICENSE.
10 *
11 *  @(#) $Id$
12 */
13
14#if HAVE_CONFIG_H
15#include "config.h"
16#endif
17
18#include <rtems/libio.h>
19#include "msdos.h"
20
21rtems_filesystem_file_handlers_r msdos_dir_handlers = {
22    msdos_dir_open,
23    msdos_dir_close,
24    msdos_dir_read,
25    NULL,             /* msdos_dir_write */
26    NULL,             /* msdos_dir_ioctl */
27    msdos_dir_lseek,
28    msdos_dir_stat,
29    NULL,
30    NULL,             /* msdos_dir_ftruncate */
31    NULL,
32    msdos_dir_sync,
33    msdos_dir_sync,
34    NULL,                 /* msdos_dir_fcntl */
35    msdos_dir_rmnod
36};
Note: See TracBrowser for help on using the repository browser.