-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfat_shell.h
More file actions
20 lines (16 loc) · 954 Bytes
/
fat_shell.h
File metadata and controls
20 lines (16 loc) · 954 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/******************************************************************************/
/* */
/* Project : FAT12/16 File System */
/* File : fat_shell.h */
/* Author : Kyoungmoon Sun(msg2me@msn.com) */
/* Company : Dankook Univ. Embedded System Lab. */
/* Notes : Adaption layer header between FAT File System and shell */
/* Date : 2008/7/2 */
/* */
/******************************************************************************/
#ifndef _FAT_SHELL_H_
#define _FAT_SHELL_H_
#include "fat.h"
#include "shell.h"
void shell_register_filesystem( SHELL_FILESYSTEM* );
#endif