mirror of
https://github.com/Interlisp/maiko.git
synced 2026-02-28 09:17:36 +00:00
12 lines
302 B
C
12 lines
302 B
C
#ifndef DIRDEFS_H
|
|
#define DIRDEFS_H 1
|
|
#include "lispemul.h" /* for LispPTR */
|
|
#ifdef FSDEBUG
|
|
void print_finfo(FINFO *fp);
|
|
#endif
|
|
int init_finfo(void);
|
|
LispPTR COM_gen_files(register LispPTR *args);
|
|
LispPTR COM_next_file(register LispPTR *args);
|
|
LispPTR COM_finish_finfo(register LispPTR *args);
|
|
#endif
|