TinyMAZE/
TinyMAZE/config/
TinyMAZE/doc/
TinyMAZE/run/msgs/
TinyMAZE/src/
TinyMAZE/src/db/
TinyMAZE/src/ident/
TinyMAZE/src/io/
TinyMAZE/src/prog/
TinyMAZE/src/softcode/
TinyMAZE/src/util/
#ifndef FILELIST_H
#define FILELIST_H

/* File flags */
#define FILE_DIRECTORY 0x1

struct filelist_struct
{
  char *name;
  unsigned int flags;
  struct filelist_struct *next;
};

typedef struct filelist_struct FILELIST;

#endif /* FILELIST_H */