/* PGP file types for Acorn RISC OS
  The functions are defined in s.ro_support.
  (c) 1997 Philipp Hullmann <hullmann@nano.fkp.uni-hannover.de>
*/


#ifdef ARM
/* One file type should be enough, since pgp can recognize the different
   files by itself. However, if you really want different types... */
extern int file_type;
#define PGP_PUBKEY_TYPE file_type
#define PGP_SECKEY_TYPE file_type
#define PGP_CIPHERTEXT_TYPE file_type
extern int read_filetype(const char *filename);
extern void set_filetype(const char *filename, int type);
#endif
