IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 18, 2007, 11:12:42 AM (19 years ago)
Author:
eugene
Message:

FT_UNSIGN_MODE removed as global symbol and functionality replaced with gfits_set/get_unsign_mode

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/libfits/header/F_init_H.c

    r8430 r12902  
    11# include <ohana.h>
    22# include <gfitsio.h>
    3 int FT_UNSIGN_MODE;
     3static int FT_UNSIGN_MODE = FALSE;
    44
    55/*********************** fits read header ***********************************/
     
    2121  return (TRUE);
    2222}
     23
     24int gfits_set_unsign_mode (int mode) {
     25  int oldmode;
     26 
     27  oldmode = FT_UNSIGN_MODE;
     28  FT_UNSIGN_MODE = mode;
     29  return (oldmode);
     30}
     31
     32int gfits_get_unsign_mode () {
     33  return (FT_UNSIGN_MODE);
     34}
Note: See TracChangeset for help on using the changeset viewer.