source: rtems/cpukit/libfs/src/dosfs/msdos_handlers_file.c @ c17d0b3

4.115
Last change on this file since c17d0b3 was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • Property mode set to 100644
File size: 783 bytes
Line 
1/*
2 *  File Operations 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
12#if HAVE_CONFIG_H
13#include "config.h"
14#endif
15
16#include <rtems/libio.h>
17#include "msdos.h"
18
19const rtems_filesystem_file_handlers_r msdos_file_handlers = {
20    rtems_filesystem_default_open,
21    msdos_file_close,
22    msdos_file_read,
23    msdos_file_write,
24    rtems_filesystem_default_ioctl,
25    rtems_filesystem_default_lseek_file,
26    msdos_file_stat,
27    msdos_file_ftruncate,
28    msdos_file_sync,
29    msdos_sync,
30    rtems_filesystem_default_fcntl
31};
Note: See TracBrowser for help on using the repository browser.