home *** CD-ROM | disk | FTP | other *** search
- #ifndef _pathent_h
- #define _pathent_h
-
- typedef struct pathent_str
- {
- struct pathent_str *next;
- int type;
- int filetype;
- unsigned int setopts;
- unsigned int clropts;
- int numexts;
- char **exts;
- char *path;
- } pathent_str;
-
- void show_pathent(pathent_str *p);
-
- int atoft(char *s);
- char *fttoa(int n);
-
- int pathent_initialise(char *file);
- int pathmap(char *unix, char *riscos, int *type, pathent_str *preset);
- pathent_str *getpathent(char *s);
- pathent_str *delpathent(pathent_str *p);
-
- #endif
-