/****************************************
 * Chad Feller				*
 * feller@seismo.unr.edu		*
 *					*
 * header file for file converter	*
 *					*
 * 24 September 2003	    converter.h	*
 * *************************************/
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <errno.h>
#include <unistd.h>
#include <string.h>

#define PERMS           0644
#define BUFFSIZE        4
#define STDIN           0
#define STDOUT          1
#define FNAMEMAX	256
#define true		1
#define	false		0

int process_file(char *,char *, short);
int swapfour(unsigned char *,unsigned char *);
int swaptwo(unsigned char *, unsigned char *);
int valid_args(int, char **, char **, char **, short **);
int usage(void);

/* Developement done on patriot, redhat
 * linux 7.3, kernel 2.4.20-20.7, gcc 3.1
 *
 * edited with vim
 */

