1/*
2  Copyright (c) 1990-1999 Info-ZIP.  All rights reserved.
3
4  See the accompanying file LICENSE, version 1999-Oct-05 or later
5  (the contents of which are also included in zip.h) for terms of use.
6  If, for some reason, both of these files are missing, the Info-ZIP license
7  also may be found at:  ftp://ftp.cdrom.com/pub/infozip/license.html
8*/
9#ifndef _QDOS_OPDEP
10#define _QDOS_OPDEP
11
12#include <stdlib.h>
13#include <sys/stat.h>
14#include <fcntl.h>
15#include <string.h>
16#include <ctype.h>
17
18char * ql2Unix(char *);
19char * Unix2ql(char *, char **);
20int wild (char *);
21char *LastDir(char *);
22void QDOSexit(void);
23short devlen(char *);
24
25/*
26 * XXX NO_RENAME instead of the following define ?
27 */
28#define link rename
29#define USE_CASE_MAP
30#define USE_EF_UT_TIME
31#define PROCNAME(n) (action == ADD || action == UPDATE ? wild(n) : \
32                     procname(n, 1))
33#endif
34