ftp.nice.ch/pub/next/unix/network/filetransfer/wu-ftpd.2.4.2-beta-13.NIHS.bs.tar.gz#/wu-ftpd-2.4.2-beta-13.NIHS.bs/src/conversions.h

This is conversions.h in view mode; [Download] [Up]

#define T_REG       1           /* regular files OK */
#define T_DIR       2           /* directories OK */
#define T_ASCII     4           /* ASCII transfers OK */

struct convert {
    struct convert *next;
    char *stripprefix;          /* prefix to strip from real file */
    char *stripfix;             /* postfix to strip from real file */
    char *prefix;               /* prefix to add to real file */
    char *postfix;              /* postfix to add to real file */
    char *external_cmd;         /* command to do conversion */
    int types;                  /* types: {file,directory} OK to convert */
    int options;                /* for logging: which conversion(s) used */
    char *name;                 /* description of conversion */
};

extern struct convert *cvtptr;

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.