summaryrefslogtreecommitdiffstats
path: root/funtools/util/file.h
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2016-10-26 21:13:00 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2016-10-26 21:13:00 (GMT)
commitda2e3d212171bbe64c1af39114fd067308656990 (patch)
tree9601f7ed15fa1394762124630c12a792bc073ec2 /funtools/util/file.h
parent76b109ad6d97d19ab835596dc70149ef379f3733 (diff)
downloadblt-da2e3d212171bbe64c1af39114fd067308656990.zip
blt-da2e3d212171bbe64c1af39114fd067308656990.tar.gz
blt-da2e3d212171bbe64c1af39114fd067308656990.tar.bz2
rm funtools for update
Diffstat (limited to 'funtools/util/file.h')
-rw-r--r--funtools/util/file.h53
1 files changed, 0 insertions, 53 deletions
diff --git a/funtools/util/file.h b/funtools/util/file.h
deleted file mode 100644
index 325b641..0000000
--- a/funtools/util/file.h
+++ /dev/null
@@ -1,53 +0,0 @@
-/*
- * Copyright (c) 1999-2003 Smithsonian Astrophysical Observatory
- */
-
-/*
- *
- * file.h -- declarations for file parsing
- *
- */
-
-#ifndef __file_h
-#define __file_h
-
-#if HAVE_CONFIG_H
-#include "conf.h"
-#endif
-
-#include <stdio.h>
-#include <ctype.h>
-#ifdef HAVE_STRING_H
-#include <string.h>
-#endif
-#ifdef HAVE_MALLOC_H
-#include <malloc.h>
-#endif
-#ifdef HAVE_STDLIB_H
-#include <stdlib.h>
-#endif
-#include <sys/types.h>
-#include <sys/stat.h>
-#include "prsetup.h"
-#include "macro.h"
-#include "xalloc.h"
-
-_PRbeg
-int FileExists _PRx((char *filename));
-int IsFile _PRx((char *s, char *filename, int len));
-int IsFits _PRx((char *filename));
-char *FileNameFromPath _PRx((char *s));
-char *FileContents _PRx((char *path, int isize, int *osize));
-int FileSize _PRx((char *path));
-int FileCopy _PRx((char *iname, char *oname));
-char *FileRoot _PRx((char *fname));
-char *FileExtension _PRx((char *fname));
-int GenerateArraySpecification _PRx((char *ispec, char *ospec, int olen));
-int GenerateArraySpec2 _PRx((char *iname, char *ispec, char *ospec, int olen));
-int GetNextFileName _PRx((char *filenames, int *ip, char *filename, int len));
-int ParseArraySpec _PRx((char *tbuf, int *xdim, int *ydim, int *bitpix,
- int *skip, int *bigendian));
-
-_PRend
-
-#endif