1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-01 02:51:05 +03:00

oops. forgot one file

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8445 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2007-08-20 21:27:29 +00:00
parent c52dd373c6
commit be7a97c144

14
package/mtd/src/mtd.h Normal file
View File

@ -0,0 +1,14 @@
#ifndef __mtd_h
#define __mtd_h
extern int quiet;
extern int mtdsize;
extern int erasesize;
extern int mtd_open(const char *mtd);
extern int mtd_check_open(char *mtd);
extern int mtd_erase_block(int fd, int offset);
extern int mtd_write_buffer(int fd, char *buf, int offset, int length);
extern int mtd_write_jffs2(char *mtd, char *filename, char *dir);
#endif /* __mtd_h */