|
From: <kin...@us...> - 2003-11-14 17:54:09
|
Update of /cvsroot/teem/teem/src/nrrd In directory sc8-pr-cvs1:/tmp/cvs-serv6733 Modified Files: defaultsNrrd.c nrrd.h Log Message: added nrrd's longest symbol name: nrrdStateKeyValueReturnInternalPointers Index: defaultsNrrd.c =================================================================== RCS file: /cvsroot/teem/teem/src/nrrd/defaultsNrrd.c,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** defaultsNrrd.c 24 Sep 2003 06:07:01 -0000 1.12 --- defaultsNrrd.c 14 Nov 2003 17:54:05 -0000 1.13 *************** *** 64,67 **** --- 64,69 ---- int nrrdStateDisallowIntegerNonExist = AIR_TRUE; int nrrdStateGrayscaleImage3D = AIR_FALSE; + /* there is no sane reason to change this default initialization */ + int nrrdStateKeyValueReturnInternalPointers = AIR_FALSE; /* should the acceptance (or not) of malformed NRRD header fields Index: nrrd.h =================================================================== RCS file: /cvsroot/teem/teem/src/nrrd/nrrd.h,v retrieving revision 1.120 retrieving revision 1.121 diff -C2 -d -r1.120 -r1.121 *** nrrd.h 10 Nov 2003 11:02:04 -0000 1.120 --- nrrd.h 14 Nov 2003 17:54:05 -0000 1.121 *************** *** 438,441 **** --- 438,442 ---- extern nrrd_export int nrrdStateDisallowIntegerNonExist; extern nrrd_export int nrrdStateGrayscaleImage3D; + extern nrrd_export int nrrdStateKeyValueReturnInternalPointers; extern void nrrdDefGetenv(void); extern void nrrdStateGetenv(void); *************** *** 569,572 **** --- 570,574 ---- extern int nrrdKeyValueErase(Nrrd *nrrd, const char *key); extern void nrrdKeyValueClear(Nrrd *nrrd); + extern int nrrdKeyValueCopy(Nrrd *nout, const Nrrd *nin); /******** endian related */ |