Changeset 38335
- Timestamp:
- May 29, 2015, 5:45:02 PM (11 years ago)
- Location:
- branches/eam_branches/ohana.20150429/src/libfits
- Files:
-
- 1 added
- 4 edited
-
Makefile (modified) (1 diff)
-
include/gfitsio.h (modified) (1 diff)
-
table/F_uncompress_T.c (modified) (1 diff)
-
test/imagecomp.c (added)
-
test/tablecomp.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ohana.20150429/src/libfits/Makefile
r38334 r38335 26 26 TEST_LDFLAGS = $(BASE_LDFLAGS) -lFITS -lohana -ltap_ohana 27 27 28 TESTPROG = tablecomp zlib28 TESTPROG = imagecomp tablecomp zlib 29 29 $(TESTPROG) : % : $(TESTBIN)/% 30 30 test: $(TESTPROG) -
branches/eam_branches/ohana.20150429/src/libfits/include/gfitsio.h
r38329 r38335 268 268 269 269 int gfits_compress_table PROTO((FTable *srctable, FTable *tgttable, int ztilelen, char *zcmptype)); 270 int gfits_uncompress_table PROTO((FTable *srctable, FTable *tgttable)); 270 271 271 272 #endif /* FITSIO */ -
branches/eam_branches/ohana.20150429/src/libfits/table/F_uncompress_T.c
r38334 r38335 7 7 int gfits_distribute_table_data (FTable *table, char *raw, int col, int row_start, int Nrows, int rowsize); 8 8 9 int gfits_uncompress_table (FTable *srctable, FTable *tgttable , char *zcmptype) {9 int gfits_uncompress_table (FTable *srctable, FTable *tgttable) { 10 10 11 11 int i; -
branches/eam_branches/ohana.20150429/src/libfits/test/tablecomp.c
r38334 r38335 69 69 FTable rawtable; 70 70 rawtable.header = &rawheader; 71 ok (gfits_uncompress_table (&cmptable, &rawtable , 10, zcmptype), "uncompressed table");71 ok (gfits_uncompress_table (&cmptable, &rawtable), "uncompressed table"); 72 72 73 73 gfits_free_header (&cmpheader);
Note:
See TracChangeset
for help on using the changeset viewer.
