Advanced Rogue 7: add and use more md_ functions.

md_fileno() and md_fdopen() are now included.  I still hope to rewrite
everything to use FILE *'s.
This commit is contained in:
John "Elwin" Edwards 2015-08-13 07:38:57 -04:00
parent 916a683bf6
commit 6813e9c5bf
4 changed files with 25 additions and 3 deletions

View file

@ -1303,3 +1303,5 @@ extern struct delayed_action f_list[MAXFUSES];
extern int demoncnt, fusecnt, between, chance;
#define CCHAR(x) ( (char) (x & A_CHARTEXT) )
extern char *md_gethostname(), *md_getusername(), *md_gethomedir(), *md_getroguedir(), *md_crypt();
extern FILE * md_fdopen(int fd, char *mode);
extern int md_fileno(FILE *fp);