Subversion Repositories SvarDOS

Rev

Rev 1572 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1572 Rev 1573
Line 5... Line 5...
5
#include <stddef.h>
5
#include <stddef.h>
6
 
6
 
7
size_t strlen(const char *s);
7
size_t strlen(const char *s);
8
void bzero(void *ptr, size_t len);
8
void bzero(void *ptr, size_t len);
9
void fmemmove(void far *dst, const void far *src, size_t len);
9
void fmemmove(void far *dst, const void far *src, size_t len);
10
unsigned short mdr_dos_fopen(const char *fname, unsigned short *fhandle);
-
 
11
unsigned short mdr_dos_fclose(unsigned short handle);
-
 
12
unsigned short mdr_dos_resizeblock(unsigned short siz, unsigned short segn);
10
unsigned short mdr_dos_resizeblock(unsigned short siz, unsigned short segn);
13
unsigned short mdr_dos_read(unsigned short handle, void far *buf, unsigned short count, unsigned short *bytes);
11
unsigned short mdr_dos_read(unsigned short handle, void far *buf, unsigned short count, unsigned short *bytes);
14
 
-
 
15
unsigned short mdr_dos_write(unsigned short handle, const void far *buf, unsigned short count, unsigned short *bytes);
12
unsigned short mdr_dos_write(unsigned short handle, const void far *buf, unsigned short count, unsigned short *bytes);
16
 
13
 
17
#endif
14
#endif